Custom Button to print screen shot

  • Thread starter Thread starter kling0n
  • Start date Start date
K

kling0n

I know how to create a custom button on a tool bar.
I have a client that wants said button to print a screen shot of
what ever form or table or report or query that he has open at the time
to a printer. Anybody every write code to achieve this task?
Any hints or suggestions?

Thanks,

kh
 
Screens don't print that well. The solution is to create a nice looking
report that formats the data in a similar way.

Then, you put the following code behind a button:

me.refresh
docmd.OpenReport "theReprot",,,"id = " & me.id
 
Back
Top