Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Crystal Reports PUSH - populating the dataset object

Status
Not open for further replies.

sk8er1

Programmer
Jan 2, 2005
229
US
I am trying to do a simple report that is based on a stored procedure. I want to learn the PUSH method. I created the report off a dataset object. But I think I have to populate the dataset and bind it to the report.

Do you have to do the same sort of thing you would do on a form connect to the datasource and fill the dataset?

Is this code written on the form load....

Thanks
 
I assume you're using .Net. Start with the sample apps from Business Objects:
VB .NET Windows Sample Applications
VB .NET Web Sample Applications

Basically, you'll fill the dataset, then use the SetDataSource method of the Report document to bind the dataset to the report. The vbnet_win_adodotnet sample from the above should help you.

-dave
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top