I would like to setup a form with an option group (something like that) to select 1 or more different reports for printing at the same time. Any ideas?
Yuo could set up checkboxes with the name of each report. Then a command button for Preview or Print that goes through code like this:
If chk1 = -1 Then docmd.openreport "report1"
If chk2 = -1 Then docmd.openreport "report2"
If chk3 = -1 Then docmd.openreport "report3"
If chk4 = -1 Then docmd.openreport "report4"
I'll give it a try...thanks. Is there a way to link Access97 to Word97? The reports being selected is a Word document. My first intention was to convert the Word documents (letters, contracts, etc) into an Access report. Is there a way to print out those documents from Word97 using the codes you inscribed for Access97? I don't want to reinvent the wheel if I don't need to.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.