Generating a report in VB?
How do I create a report which can show all the information which are inside the access database? I have alreadt set up the database and have all the necessary fields. All I need now is just to generate a report in vb with all the fields. Pls advice.
Re: Generating a report in VB?
What if I want to selected a report to be generated?
eg. the field in my report has index, name and age, then the user can either choose from maybe index 1 to index 5 to be shown only, or in another case, user may want to choose age = 15 to 20 to be shown.
How can I be able to do this? I will need to create a combobox right?
Re: Generating a report in VB?
In the dataenvironment and in command... code like this
where index between ? and ? means that u are having two parameters Index from and Index to.
create one parameter form and put two text items.. one for Index1 and index 2.
datareport.show text1.text,text2.text
hope this solve your problem
regards
Hiran
Re: Generating a report in VB?
Quote:
Originally Posted by hiran3727
In the dataenvironment and in command... code like this
where index between ? and ? means that u are having two parameters Index from and Index to.
create one parameter form and put two text items.. one for Index1 and index 2.
datareport.show text1.text,text2.text
hope this solve your problem
regards
Hiran
Thanks for the reply! Mind if you explain further? Thanks in advance!
:wave:
Re: Generating a report in VB?