Printing an Access form???

  • Thread starter Thread starter Wolfe
  • Start date Start date
W

Wolfe

Is there an easy way to print an Access form? The form has a header section
and detail section. The detail section contains three sub forms that pull
off of the header section. What I would like to do is kind of a screen shot
when a user clicks a print button.

Thanks,
WOLFE
 
Please do not post to multiple groups. You do not need several people
answering your question.

This has been answered in another group.

rick B


Is there an easy way to print an Access form? The form has a header section
and detail section. The detail section contains three sub forms that pull
off of the header section. What I would like to do is kind of a screen shot
when a user clicks a print button.

Thanks,
WOLFE
 
Try adding a button and put the following line of code behind it. This will
give a kind of screenshot of the form in preview mode which the user can
then print if they wish.

RunCommand acCmdPrintPreview
 
Back
Top