Crystal Reports & Forms

stokh

Newcomer
Joined
Jun 12, 2003
Messages
1
I have a asp.net form that a user enters a bunch of data into, Panel1. The user clicks a review button which allows them to review the data from Panel1 on Panel2 in a bunch of labels.

The data has not been submitted to the database yet, I need to know if there is away of putting this data into a crystal report and allow the user to print it out before they submit the data?

Thanks in advance!
Stokh
 
load the data into a dataset then use the dataset as the source for the report. I just did it and it works surprisingly well. you don't have to worry about filtering records through the report object, just use the table or view in the dataset that contains what you want to display.


-lp
 
Back
Top