Members

Technology Zones

IBM Learning Center

Articles

Hosted By

MaximumASP

Info

Rated
Read 63,896 times

Downloads

Related Categories

Create flexible reports with Data Report utility

S.S. Ahmed

This project will show you how to create reports in VB using the data report utility, this utility is very easy to use and it only takes minutes to create flexible reports using this utility. For this project, I have used the biblio database that comes with the VB6, so make sure that the biblio database is available on your machine in the directory where VB is installed. I have used data environment to connect to the database and the report fetches the records directly from the database (via data environment). I wanted to write a complete article about the usage of this utility but alas! the time is short. So, you will have to delve into the code yourself to see whats happening. On the main form, you will see the following four buttons:

  1. Show Report: This will display the report on the screen.
  2. Print Report: This will send the report to the printer, printer should be installed or you will get an error message saying that no printer was found
  3. Export to HTML: This will export your report to the html format, you can select the number of pages you want to be exported to the html.
  4. Exit: You can exit the application by clicking this button.

You can drag the fields directly from the data environment on to your report. That's it!!!!

Here are the steps needed to create the project:

  1. Start a new VB project (EXE)
  2. Insert dataenvironment and change its connection property to point towards the biblio database that comes with the VB
  3. Insert a command and point it towards the publishers table
  4. Insert a child command and point it towards a title table
  5. Add a data report utility from the project menu.
  6. Open the data environment and data report windows and place them side by side.
  7. To change the data report utility to better suit the data environment that was previously defined, first change the data report's data source property to dataenvironment1 ( you can change the name of the data environment) and its datamember property to publishers. next, right click anywhere within the data report window and choose the retrieve structure option. Click yes.
  8. Change the format of the report according to your own needs.
  9. See the form's code to understand the functions that are needed to display, print and export the report to the html format.

Happy programming!!!!!

S.S. Ahmed is a senior IT Professional and works for a web and software development firm. Ahmed is a Microsoft Office SharePoint Server MVP. Ahmed specializes in creating database driven dynamic web sites. He has been working with SharePoint for the last 3-4 years. He develops customized SharePoint solutions. Ahmed likes to hop into other tools as well. Ahmed has used Project Server, InfoPath and BizTalk. Ahmed enjoys travelling and has been to many parts of the world. Web: www.walisystems.com Blog: www.sharepointblogs.com/ssa

Comments

  • vb data report display few than the number of reco

    Posted by kwame on 08 Feb 2006

    I'm working with VB6 and SQL2000. I design a report using data report. I set the datasource to recordset (assign recordset dynamically) but notice that the records displayed is always less by one. Tha...

  • Didn't Work

    Posted by computerg33k on 06 Aug 2004

    Didn't work--Form will come up but not the dataenvironment or datareport.