Introduction
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 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 what's happening. On the main form, you will see the following four buttons:
- Show Report: This will display the report on the screen.
- 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.
- Export to HTML: This will export your report to HTML format, you can select the number of pages you want to be exported to HTML.
- 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!!!!
Creating the application
Here are the steps needed to create the project:
- Start a new VB project (EXE).
- Insert data environment and change its connection property to point towards the biblio database that comes with VB.
- Insert a
command
and point it towards the publishers
table.
- Insert a child command and point it towards a
title
table.
- Add a data report utility from the project menu.
- Open the data environment and data report windows and place them side by side.
- To change the data report utility to better suit the data environment that was previously defined, first change the data report's
datasource
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.
- Change the format of the report according to your own needs.
- See the form's code to understand the functions that are needed to display, print and export the report to HTML format.