Print Screen Button on Form

M

m stroup

I would like to add a button on my form to print the current screen, rather
than calling a report. Any suggestions?
 
S

Stuart McCall

m stroup said:
I would like to add a button on my form to print the current screen, rather
than calling a report. Any suggestions?

Try:

DoCmd.RunCommand acCmdPrint
 
Top