Click here to Skip to main content
15,881,516 members
Articles / Desktop Programming / Windows Forms
Article

Dynamic Reports UsingSQL Queries

Rate me:
Please Sign up or sign in to vote.
4.32/5 (28 votes)
23 Nov 20052 min read 201.4K   4.4K   89   42
Dynamic report by using the PrintDocument component with SQL queries.

Sample Image

Sample Image- Multilines

Introduction

Microsoft Visual Studio .NET provides Crystal Reports for report printing and throws the DataReport component (Visual Studio 6) away from .NET. Although, Crystal Reports is a good report creator, sometimes when we want to create dynamic reports, maybe for listing something or for data summation, it is not so suitable. Crystal Reports can be used for dynamic reports but it has a fixed set of column types and the number of maximum columns.

So I use the PrintDocument component, in the System.Drawing.Printing namespace of the .NET base library. PrintDocument is a component like a plain paper. You can draw or print anything on it. Normally, you have to set the object coordination and other properties just like when you use a pen to write on the paper. But for this code, you just use a SQL query or a dataset only!

Using the code

Add a form to a project and a PrintDocument component to it. And use a DataSet, and specify the column of the first table (Table(0)) by strict format (1 set per 1 report column):

  • Column 1 -> Column name.
  • Column 2 -> Start position on paper, I set that all width has range between 0-99.
  • Column 3 -> End position on paper, I set that all width has range between 0-99.
  • Column 4 -> Justify (L-Left, R-Right, C-Center).
  • Column 5 -> Has summarize in this column (Y/N).
  • Column 6 -> Display format (such as #,##0.00).
  • Column 7 -> Rest in line? Begin with 1.
  • Column 8 -> Data column.

Please look at the example, it's easy to understand.

We can set the properties of PageSetDlg and prnSetDlg objects for the print options. I use the Form component and I put the PrintDocument, PrintPreviewDialog, PageSetupDialog, and PrintDialog components on it. Then, we can use these for direct printing or use a print dialog too. We can set the properties of those objects for a specific print option such as setting the page orientation to landscape, etc.

VB
'-------- Example use, If you haved data in
'           dataset already. --------------

'--- We can set properties of PageSetDlg
    ' and prnSetDlg object for print option 
    'frmDynamicPrint.PageSetDlg.PageSettings.Landscape = True

    '---If it has sum column is this report,
    '   we have to set hasSum flag to true. 
    frmDynamicPrint.hasSum = True

'---Initialization
    frmDynamicPrint.FontName = "Tahoma"
    frmDynamicPrint.FontSize = 12
    frmDynamicPrint.FontSizeHead = 16
    frmDynamicPrint.FontSizeHead2 = 14
    frmDynamicPrint.LineHeight = 1
    frmDynamicPrint.SkipLinePerRecord = 1

    '---Call InitPrint for inital some properties,
    ' you can modify it.
    frmDynamicPrint.InitPrint()

    frmDynamicPrint.HeadFirstString = _
      "Report for Product Order Value Summary"
    frmDynamicPrint.HeadSecondString = "Test Report"
    frmDynamicPrint.DateString = Now.ToString
    frmDynamicPrint.PrintPreview()
    frmDynamicPrint.Dispose()

Points of Interest

I will develop an HTML report later or will add a feature to export a report to another format.

History

  • November 27, 2005 - Fixed a little bug in the example in setting the page number.
  • November 24, 2005 - Fixed a big bug in the query loop and the summation method. I'm very sorry for my late bug fixing.
  • October 05, 2005 - Added the wrap text feature.
  • September 13, 2005 - Add feature for multiple lines and setting height of each line. It can be used like the wrap text feature too.
  • September 12, 2005 - Changed the column position addressing on paper. Use start-end positions instead of one position.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Thailand Thailand
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralRe: Detail explaination Pin
Pakorn Indhatep14-Oct-05 4:30
Pakorn Indhatep14-Oct-05 4:30 
GeneralRe: Detail explaination Pin
mansii17-Oct-05 22:33
mansii17-Oct-05 22:33 
GeneralRe: (No) Detail Rows? explaination Pin
adhsys23-Nov-05 11:59
adhsys23-Nov-05 11:59 
GeneralRe: (No) Detail Rows? explaination Pin
Pakorn Indhatep23-Nov-05 22:03
Pakorn Indhatep23-Nov-05 22:03 
GeneralRe: (No) Detail Rows? explanation (OK) Pin
adhsys24-Nov-05 0:44
adhsys24-Nov-05 0:44 
GeneralRe: (No) Detail Rows? explaination Pin
mansii24-Nov-05 0:53
mansii24-Nov-05 0:53 
GeneralNice Work [Suggestion] Pin
| Muhammad Waqas Butt |26-Aug-05 0:39
professional| Muhammad Waqas Butt |26-Aug-05 0:39 
GeneralRe: Nice Work [Suggestion] Pin
Vertyg027-Aug-05 7:46
Vertyg027-Aug-05 7:46 
GeneralThank you Pin
Pakorn Indhatep27-Aug-05 9:37
Pakorn Indhatep27-Aug-05 9:37 
GeneralRe: Thank you Pin
Vertyg029-Aug-05 2:29
Vertyg029-Aug-05 2:29 
Generalversion 1.1 Pin
Pakorn Indhatep11-Sep-05 22:35
Pakorn Indhatep11-Sep-05 22:35 
GeneralRe: version 1.1 Pin
| Muhammad Waqas Butt |12-Sep-05 4:39
professional| Muhammad Waqas Butt |12-Sep-05 4:39 
Generalversion 1.1.1 Pin
Pakorn Indhatep13-Sep-05 0:34
Pakorn Indhatep13-Sep-05 0:34 
GeneralRe: version 1.1.1 Pin
| Muhammad Waqas Butt |21-Sep-05 5:23
professional| Muhammad Waqas Butt |21-Sep-05 5:23 
GeneralRe: version 1.1.1 Pin
Pakorn Indhatep21-Sep-05 19:28
Pakorn Indhatep21-Sep-05 19:28 
GeneralVersion 1.2 Add wrap text feature Pin
Pakorn Indhatep4-Oct-05 18:28
Pakorn Indhatep4-Oct-05 18:28 
QuestionSome Questions Pin
| Muhammad Waqas Butt |5-Oct-05 5:06
professional| Muhammad Waqas Butt |5-Oct-05 5:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.