Re: Create a Report in VB6?
You could use either Data Reports or Access Reports depending on which you are more familiar with.
Re: Create a Report in VB6?
Thanks Hack
Excuse my ignorance but I once created a report in VB specifying a data environment etc. etc. but I couldnt figure out how to get this to work if the database was on a server with multi users, it was also a while ago and I can't remember how I did it.
I was hoping for a method that could be used to create reports even after the app has been distributed to the user, or reports that may even be created by the user himself.
Is this possible ?
Re: Create a Report in VB6?
you can use system dsn to connect to your system.
Re: Create a Report in VB6?
If you have Crystal Reports available to you it would be the best chioce in my opinion. You can use the CR Viewer control to open and view a report. also, it has an Export button that practically automatically exports the report in many formats like Excel, PDF, etc.
Re: Create a Report in VB6?
Quote:
Originally Posted by KenBZim
I was hoping for a method that could be used to create reports even after the app has been distributed to the user, or reports that may even be created by the user himself.
Is this possible ?
Creating a report usually involves some form of database query to return a result set, that, in turn, gets nicely formatted for printing.
If your users have access and rights to your database, then they could do this themselves, but it would be completely external to the application you have written.
Re: Create a Report in VB6?
Re: Create a Report in VB6?
So, what is the final verdict? What did you decide to go with?