Print Button

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

Guest

Hi,
I would like to add a Print Button on my Form that only prints the current
page being viewed.
How would I go about doing this?

Using Word 2003 on XP with all the updates
 
The following macro added to a toolbar button will print the page the cursor
is in to the currently active printer

Sub PrintPage()
Application.PrintOut Range:=wdPrintCurrentPage
End Sub


http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com

<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top