I am going to be sending out report cards to our vendors. The report cards will be generated using Access 97. I have a table of the vendor's ID and e-maill address. I created a query off of a table of all our records that selects the records that match the ID #, then created a report based off that query.
In psuedo-code, I want to do the following:
If (Table of vendors not empty) Then
Get the e-mail and ID
Run the Query
Create the report based off the query
DoCmd.SendObject (send the report to the e-mail address in rtf format).
When I do this, however, the parameter query box for the report pops up, asking for the ID.
How the heck do I run the query and create the report without the parameter query box popping up when I create the report? How can I pass the ID to the report?
Thanks!
In psuedo-code, I want to do the following:
If (Table of vendors not empty) Then
Get the e-mail and ID
Run the Query
Create the report based off the query
DoCmd.SendObject (send the report to the e-mail address in rtf format).
When I do this, however, the parameter query box for the report pops up, asking for the ID.
How the heck do I run the query and create the report without the parameter query box popping up when I create the report? How can I pass the ID to the report?
Thanks!