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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

VB6 Data Report and external recordsets

Status
Not open for further replies.

ndalli

Programmer
Nov 6, 1999
76
MT
Hi

I am using the Data Report Utility which comes with VB6. Does any one knows how to send the data to a recordset outside the environment that you have to create for the reports? The main reason is that the Open command is too slow when run from the environment.

Thanks
 
You can run the DataReport with any adoRecordset as it's datasource

DataReport1.Datasource = myRS
DatReport1.Show


________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first

'People who live in windowed environments shouldn't cast pointers.'
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top