G Guest Jun 8, 2004 #1 Is there a way to have Paste Special as a toolbar ? I always want to use 'unformatted' and seems like there should be a quicker way...
Is there a way to have Paste Special as a toolbar ? I always want to use 'unformatted' and seems like there should be a quicker way...
D Dayo Mitchell Jun 9, 2004 #3 And for help doing that, see here: Creating a macro with no programming experience using the recorder http://word.mvps.org/faqs/macrosvba/UsingRecorder.htm How to assign a Word command or macro to a toolbar or menu http://word.mvps.org/faqs/customization/AsgnCmdOrMacroToToolbar.htm DM
And for help doing that, see here: Creating a macro with no programming experience using the recorder http://word.mvps.org/faqs/macrosvba/UsingRecorder.htm How to assign a Word command or macro to a toolbar or menu http://word.mvps.org/faqs/customization/AsgnCmdOrMacroToToolbar.htm DM
C Colin Higbie Jun 10, 2004 #4 Yes, when I switched from Word Perfect I wanted an easy way to do just this (as it is in WordPerfect). I recorded the macro and assigned it both a toolbar button and to Ctrl-Shift-V, which now pastes unformatted text with a keypress. - Colin
Yes, when I switched from Word Perfect I wanted an easy way to do just this (as it is in WordPerfect). I recorded the macro and assigned it both a toolbar button and to Ctrl-Shift-V, which now pastes unformatted text with a keypress. - Colin
G Graham Mayor Aug 10, 2004 #5 Sub PasteUnfText() On Error GoTo Oops Selection.PasteSpecial DataType:=wdPasteText, Placement:= _ wdInLine End Oops: Beep End Sub -- <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Graham Mayor - Word MVP My web site www.gmayor.com <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Sub PasteUnfText() On Error GoTo Oops Selection.PasteSpecial DataType:=wdPasteText, Placement:= _ wdInLine End Oops: Beep End Sub -- <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Graham Mayor - Word MVP My web site www.gmayor.com <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
G Graham Mayor Aug 13, 2004 #6 You are welcome -- <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Graham Mayor - Word MVP My web site www.gmayor.com <>>< ><<> ><<> <>>< ><<> <>>< <>><<>
You are welcome -- <>>< ><<> ><<> <>>< ><<> <>>< <>><<> Graham Mayor - Word MVP My web site www.gmayor.com <>>< ><<> ><<> <>>< ><<> <>>< <>><<>