Click here to Skip to main content
6,635,160 members and growing! (17,300 online)
Email Password   helpLost your password?
Database » Database » General     Intermediate

The CAccessReports class

By Tom Archer

A class for Printing and Viewing MS Access Reports
SQL, VC6, SQL Server, MFC, DBA, Dev
Posted:14 Mar 2000
Views:92,039
Bookmarked:46 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
25 votes for this article.
Popularity: 6.58 Rating: 4.71 out of 5

1

2

3

4
3 votes, 100.0%
5

Sample Image - access_reports_class.gif

Author's Note

This article was written based on Access '97 (I believe) and I haven't updated it since. It will probably not work with other versions of Access but I welcome others to update the code to work with newer versions of Access.

Introduction

This class (CAccessReports) was created for those of us who have the misfortune of having to 1) use the MS Access database engine and 2) use the MS Access database engine from a Visual C++ application. The CAccessReports class uses the Access Automation objects to open a specified database, run a report (within Access), print the report and save the Access database in HTML format so that it can be viewed in a Visual C++ application. You can accomplish each of these tasks with a single line of code. Here are some examples of how to use the CAccessReports class.

Examples of how to use the CAccessReports class

When you download the source code for the CAccessReports, you will also find a full-fledged test application. However, it's always nice to be able to see what you're getting before you invest the time in downloading, unzipping and running someone else's code. Therefore, here are some code snippets that show how easy the CAccessReports class is to use.

Instantiating a CAccessReports object

How you choose to instantiate CAccessReports object depends on how you plan to use it in your application. The first argument of the CAccessReports is the fully qualified name of the database file. The second argument specifies whether you want the CAccessReports class to preload all of the report names. An example of when you would want the class to retrieve all of the report names is if your application needs to display a list of the reports to the end-user. Otherwise, if you are instantiating a CAccessReports object in order to run, print or display specific reports whose names are known at compile-time, you can pass a value of FALSE for this argument.

// Have the CAccessReports object load the report names

CAccessReports accessReports(YOUR_ACCESS_DATABASE, TRUE);

// Simply attach to the specified Access database

CAccessReports accessReports(YOUR_ACCESS_DATABASE, FALSE);

Getting a List of Reports from an Access Database

If you specified a value of TRUE for the second argument of the CAcessReport constructor, you can then retrieve the list of reports for a given Access database. Here's an example of a simple loop to retrieve and display all of the report names.

CAccessReports accessReports(YOUR_ACCESS_DATABASE, TRUE);

for (int i = 0; i < accessReports.m_reports.GetSize(); i++)
{
 AfxMessageBox(accessReports.m_reports[i]);
}

Running an Access Report

While the CAccessReports class does allow you to display an Access report from a Visual C++ application (shown below), there are still valid reasons to run the report from within Access. Therefore, the RunReport member function does exactly that.

CAccessReports accessReports(YOUR_ACCESS_DATABASE, FALSE); 
accessReports.RunReport(YOUR_REPORT_NAME);

Printing an Access Report

The PrintReport function takes as its only argument the name of a report to print. This function calls RunReport and then uses Automation to print the report.

CAccessReports accessReports(YOUR_ACCESS_DATABASE, FALSE); 
accessReports.PrintReport(YOUR_REPORT_NAME);

Displaying an Access Report (Visual C++ 6.0)

Access Automation doesn't allow for the ability to redirect the output of a report to a given window. However, it does allow for a report to be run and then saved in HTML format. That combined with the new Visual C++ 6.0 CHtmlView gives you the ability to run an Access report and display it in a Visual C++ application. In the example below, CAccessReportView is a CHtmlView derived class.

void CAccessReportView::OnInitialUpdate()
{
 CHtmlView::OnInitialUpdate();

 CAccessReports accessReports(YOUR_ACCESS_DATABASE, FALSE); 
 accessReports.SaveAsHtml(YOUR_REPORT_NAME, DESTINATION_FOLDER);
 Navigate2(FULLY_QUALIFIED_FILE_NAME, NULL, NULL);
}

Displaying an Access Report (Visual C++ 5.0)

Unfortunately, Visual C++ 5.0 does not have the CHtmlView class. However, you can still display Access reports using the WebBrowser control (in the Visual C++ Component Gallery). In order to display the Access report in a Visual C++ 5 application, simply instantiate a CAccessReports object, call its SaveAsHtml member function and then call the WebBrowser control's Navigate function specifying the name of the HTML file.

Notes

Access Automation can not be used to get the entire list of reports for a an Access database. Therefore, if you specify TRUE to the second argument of the CAccessReports constructor, the class attempts to use the MFC DAO classes to access the msysobjects table of the specified database. In order to accomplish this, you must give the Admin user "read" priveleges to the database's msysobjects table (see below). If your application is printing or viewing a specific report from a specific database and you don't need the list of reports, then this limitation does not apply. If anyone knows of a better way of doing this, I'm always open to learning new things :)

Granting access to the MS Access MSysObjects table

  1. Open Microsoft Access
  2. From the Tools menu, select the Options menu option
  3. On the View tab, click the System Objects checkbox
  4. Click OK to save your changes
  5. From the Tools menu, select the Security -> User and Group Permissions menu option
  6. Click the Permissions tab
  7. Select the Table entry in the Object Type combo box
  8. Select the Admin userid in the User/Group Name listbox
  9. In the Object Name listbox, select the MSysObjects entry
  10. In the Permissions group box, check the Read Data check box

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

About the Author

Tom Archer


Member
I'm a Senior Programming Writer in the Microsoft Windows Server organization where my focus is Group Policy, WSUS, and WUA. I also do freelance technical, scientific, and commerical writing so if you or your company need any help in this area, drop me a line and we can discuss your needs and my availability.
Occupation: Technical Writer
Company: Microsoft
Location: United States United States

Other popular Database articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 25 (Total in Forum: 25) (Refresh)FirstPrevNext
Generalunrecognized format Pinmemberdeposit19:31 11 Feb '07  
GeneralRe: unrecognized format PinmemberTom Archer - MSFT19:51 11 Feb '07  
GeneralRe: unrecognized format PinadminChris Maunder15:19 12 Feb '07  
GeneralRe: unrecognized format PinmemberTom Archer - MSFT15:36 12 Feb '07  
QuestionError - pls help PinmemberLavinia Mary Gonsalvez0:05 25 Oct '05  
GeneralAccessAutomation Projet Pinmemberhervy0:31 16 Sep '05  
GeneralList of Reports without MSysObjects PinmemberFriendOfAsherah23:51 20 Sep '04  
GeneralADO Pinmembercybz5510:28 31 Mar '04  
GeneralHow to do this using ADO instead of DAO ? PinsussAnonymous10:13 31 Mar '04  
Generala few more errors Pinmembernaveenpn19:33 1 Oct '03  
GeneralRe: a few more errors PinmemberTom Archer5:23 2 Oct '03  
Generalundeclared identifier error Pinmembernaveenpn8:04 1 Oct '03  
GeneralRe: undeclared identifier error PinmemberTom Archer12:34 1 Oct '03  
Generalway to pass /user and /pwd via automation? PinsussCyndi10:11 25 Mar '03  
GeneralRe: way to pass /user and /pwd via automation? PinmemberTom Archer10:15 25 Mar '03  
GeneralRe: way to pass /user and /pwd via automation? PinsussCyndi10:23 25 Mar '03  
GeneralRe: way to pass /user and /pwd via automation? PinmemberTom Archer10:42 25 Mar '03  
Generalhow to send SQL to access report by MFC PinmemberAnonymous8:26 9 Jun '02  
GeneralQuery for primary keys in access 2000 PinmemberAnonymous8:16 28 Mar '02  
GeneralUsing reports with access queries PinmemberTodd Hallquist7:30 10 May '01  
GeneralRe: Using reports with access queries PinmemberTom Archer10:19 25 Mar '03  
GeneralGetting it to work under access 2000 PinmemberAshraf Moosa4:44 2 May '01  
GeneralRe: Getting it to work under access 2000 PinmemberSKeTch16:16 10 Aug '02  
GeneralRe: Getting it to work under access 2000 PinmemberKapoor Vikrant7:18 23 Nov '03  
GeneralODBC REPORTS PinmemberLuis Varas4:47 3 Apr '01  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 14 Mar 2000
Editor: Chris Maunder
Copyright 2000 by Tom Archer
Everything else Copyright © CodeProject, 1999-2009
Web17 | Advertise on the Code Project