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

Search results for query: *

  1. climberhunt

    Populating dynamically loaded .rpt with ADO recordset.

    Problem Solved! :-) If you use the Active Data Driver (using the relevant flavour, ADO for the following example) to develop the report, and save it as a .rpt file (with or without the data), you can then use the following code to populate a recordset and point the report at it. you can then...
  2. climberhunt

    Populating dynamically loaded .rpt with ADO recordset.

    Stephen, the oRpt.DiscardSavedData method causes the parameter entry dialog to pop up. I had tried this before to no avail. Ken, the oRpt.DiscardSavedData achieves the same thing, I had intended to save the report without data when I got all this working. I have since found out the following...
  3. climberhunt

    Populating dynamically loaded .rpt with ADO recordset.

    I'm trying to populate a report with an ADO recordset. The following code is what I have so far. Dim oApp As New CRAXDRT.Application Dim oRpt As CRAXDRT.Report Dim rsResults As New ADODB.Recordset Set oRpt = oApp.OpenReport("c:\MyReport.rpt") PopulateRS rsResults '...

Part and Inventory Search

Back
Top