Creating Toolbar Buttons

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

Guest

How do I create a button on my toolbar that will print the current page of a document only
 
One option is to create a macro, and assign it to a button
in the toolbar. Make sure to assign the macro and the
toolbar to the Normal.dot template and not a specific
document.
-----Original Message-----
How do I create a button on my toolbar that will print
the current page of a document only
 
This is something I have already done. The macro is:

Public Sub PrintCurrentPage()
ActiveDocument.PrintOut printtofile:=False, Range:=wdPrintCurrentPage
End Sub

Regards,
Chad DeMeyer
 
How do you create a macro - whatever that is!(can you tell I'm new at this
computer stuff???)
 
Back
Top