On Fri, 30 Oct 2009 19:43:01 -0700, pmokover
<pmokover DeleteThis @discussions.microsoft.com> wrote:
>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.
--
Regards,
Jay Freedman
Microsoft Word MVP FAQ:
http://word.mvps.org
Email cannot be acknowledged; please post all follow-ups to the newsgroup so all may benefit.