G Guest May 24, 2006 #1 I have several single page reports I need to print with one command button. What is the easiest (and most reliable) way to do this?
I have several single page reports I need to print with one command button. What is the easiest (and most reliable) way to do this?
T Tom Lake May 24, 2006 #2 Rocket said: I have several single page reports I need to print with one command button. What is the easiest (and most reliable) way to do this? Click to expand... Write a macro to print the reports one after the other and execute the macro from the command button. Tom Lake
Rocket said: I have several single page reports I need to print with one command button. What is the easiest (and most reliable) way to do this? Click to expand... Write a macro to print the reports one after the other and execute the macro from the command button. Tom Lake
K Keith Wilby May 24, 2006 #3 Rocket said: I have several single page reports I need to print with one command button. What is the easiest (and most reliable) way to do this? Click to expand... DoDmd.OpenReport "rptMyReport1", acViewNormal DoDmd.OpenReport "rptMyReport2", acViewNormal DoDmd.OpenReport "rptMyReport3", acViewNormal etc. HTH - Keith. www.keithwilby.com
Rocket said: I have several single page reports I need to print with one command button. What is the easiest (and most reliable) way to do this? Click to expand... DoDmd.OpenReport "rptMyReport1", acViewNormal DoDmd.OpenReport "rptMyReport2", acViewNormal DoDmd.OpenReport "rptMyReport3", acViewNormal etc. HTH - Keith. www.keithwilby.com