Easy! Reports

Environment: VC6

One of the problems while writing programs in C++ is that the tools and API that you can use to generate reports are very limited. For instance, there is a plethora of classes for viewing (CView, CHtmlView etc.) but no reporting API.

The tool presented here is a simple API that can be used to print fairly complex business style reports.

Almost all reports have the following standard elements:

  1. A Report header. Typically, this is the establishment name, business address etc. The report header is printed only on the first page of the report.
  2. The page header. This generally consists of the report title, e.g. “Payroll Summary” and a date. This page header is printed on every page of the report.
  3. The page header is followed by one or more tabular data sections. For instance, a payroll summary may include employee names and their salaries grouped by their department. There may be several sections, one for each department. Each group may be followed by a summary section, summarizing the data for that group.
  4. The data section is followed by a page footer. This page footer generally consists of a page number. The page footer is generally printed on every page.
  5. The page footer is optionally followed by the Report footer. This report footer is printed only on the last page.

Given the above, we present a simple yet powerful layout class. This class is called “CEasyReport”. There are basically three functions that are really the key.

  1. “SetDataCols”, which starts a new tabular section. The arguments are a array of CColInfo items describing each column in the section. The description includes the column name, the column width and alignment. The column name can contain ‘n’, which sets up a multiple row column heading.
  2. “AtTab(int, CString)”. This is the workhorse function which can be used to print text in columns. The first parameter is the column number and the second character is the text to be printed. For instance, if your tabular section consists of a “Name” column and a “Date of Birth” column, you would print the name using:
      AtTab(0,"Lal, Vipul");  // write the name in col 0
      AtTab(1,"12/04/1980");  // write DOB in col 1
    

    We could have overloaded this function to print a long, double, a CTime etc, but we left that to to you to suit your own requirements.

  3. Call “NextRow” to advance the printing to the next row. Typically, you would do this when you have printed all the columns in one row. This function checks to see if there is enough space on the current page to print another row, and ejects the page if not.

Whenever you need to start a new section, simply call SetDataCols. Thus, if your report consists of a main section followed by a summary section for each group, your typical code loop would be:

m_Recordset.Open(...);
while(! m_Recordset.IsEof())
{
  SetDataCols(ColsInMainSection...)
  m_CurGroup = m_Recordset.GroupColumnData;
  do
  {
    AtTab(0,DataForGroupCol);
    ... other columns...
    NextRow(); // advance the printer row
    m_Recordset.next;
    // compute summary items
  }
  while( !m_Recordset.IsEof() &&
    m_Recordset.GroupColumnData == m_CurGroup);
  // Start a summary section...
  SetDataCols(ColsInSummarySection);
  AtTab(...);  // print summary data
  NextRow();
}

While generating a report content, no actual image is generated. Rather, the generation process simply generates “report objects”. For instance, a CTextObject contains the text to be written and the rectangular co-ordinates for the text. Thus, every page consists of a set of “report objects”. Later, when we are called to print or preview the report, we simply call upon the report object to draw itself. Since every such object has the co-ordinates with respect to the top of the page, we can draw any page. Thus, the user can select to print or preview page 3,5 and 7 of the report and we simply draw all objects for those pages. The current version supports a Text object, a Line object and a Date and PageNumber object.

Note: The current version simply generates these report objects in memory. You might want to serialize these to disk if the report is really long.

The API has a “RepeatHdr” flag, which forces the column headings to be printed on every page. When this flag is off, the column header is printed every time the tabular section is set up.

The report also has “SuppressBlankHdr” flag. When this flag is set, the column headings are not printed unless you print something in one of the columns.

The report also has a “word-wrap” mode in which one can print a “paragraph” of text. The text is aligned within the page margins.

The demo report project generates a report of all employees, grouped by department. The demo project also has a small Access database which has two tables – an Employee table and a Departments table. The SQL Query used for the report is:

SELECT * FROM employees INNER JOIN departments
    ON employees.DeptID = departments.DeptID
       GROUP BY employees.DeptID

However, the current API is not limited to SQL databases in any way and the source of the data could be anything, even an in-memory array. However, the algorithm presented above does rely on the fact that the data is already grouped and sorted. This would generally be the case, since the database can use indexes etc to sort and group the data.

Please do feel free to email me your suggestions, comments and bug fixes.

Downloads

Download demo project – 45 Kb

Download source – 13 Kb

More by Author

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Must Read