Quick Access Toolbar Commands

  • Thread starter Thread starter pmokover
  • Start date Start date
P

pmokover

In Word 2007 is there any way to get an icon on the Quick Access Toolbar for
"Print Current Page?"

I don't see that on the list of command choices. Am I missing it? Is there
some way to create an icon that does that?

Thanks
Peter
 
In Word 2007 is there any way to get an icon on the Quick Access Toolbar for
"Print Current Page?"

I don't see that on the list of command choices. Am I missing it? Is there
some way to create an icon that does that?

Thanks
Peter

There is no separate command for that, so there's no built-in button
for the toolbar. You have to use a macro.

Put this macro in your Normal.dotm template (see
http://www.gmayor.com/installing_macro.htm if needed):

Sub PrintThisPage()
ActiveDocument.PrintOut Range:=wdPrintCurrentPage
End Sub

Then use the Customize Quick Access Toolbar dialog, choose the Macros
category, and add it to the list on the right. Click the Modify button
to change the tooltip and icon for the button.
 
Jay - Thanks I'll give it a shot.

Peter

Jay Freedman said:
There is no separate command for that, so there's no built-in button
for the toolbar. You have to use a macro.

Put this macro in your Normal.dotm template (see
http://www.gmayor.com/installing_macro.htm if needed):

Sub PrintThisPage()
ActiveDocument.PrintOut Range:=wdPrintCurrentPage
End Sub

Then use the Customize Quick Access Toolbar dialog, choose the Macros
category, and add it to the list on the right. Click the Modify button
to change the tooltip and icon for the button.

--
Regards,
Jay Freedman
Microsoft Word MVP
Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit.
.
 
Back
Top