Quick Access Toolbar Commands

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
 
J

Jay Freedman

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.
 
P

pmokover

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.
.
 

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

Top