vb6 ado access report

B

bliever

I use ADO to connect to Access DB for all of my queries.
cmd.CommandType = adCmdStoredProc
cmd.CommandText = "qryDelNetByFlight"
How do I call an Access Report?
 
D

Douglas J. Steele

You can't. ADO is a means of getting at data in tables, not at Access
objects like reports or forms.
 
Top