question aoubt printing an image on a form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Which command should I use to print an image on a form?

I put a image control and a button on the form.
I want to print the image when the button is clicked.However I don't know which command can do the job (print or printout seems not working)

Many Thanks
 
Printing in Access is easiest done via Reports. Create a Report with an
Image Control and use DoCmd.OpenReport... you can include code in the Print
event to pick up the path and filename from a control (doesn't have to be
visible) on the Form to set the Picture property of the Image Control in the
Report.

Larry Linson
Microsoft Access MVP

rouqiu said:
Which command should I use to print an image on a form?

I put a image control and a button on the form.
I want to print the image when the button is clicked.However I don't know
which command can do the job (print or printout seems not working)
 
Back
Top