I want a toolbar button for paste special, unformatted. I see the
button for paste special, but that brings up the paste special box
which requires several additional clicks.
Not effiecient! <g>
Anyone know of a solution, or is the only way to do this write a
macro?
Thanks!
PeterD, the Darkstar Network
To email, fix my address!
ExpertZone!
Peter D. Hipson - 28 Apr 2005 00:13 GMT
>Not effiecient! <g>
>
>Anyone know of a solution, or is the only way to do this write a
>macro?
Wrote a macro. Works for what I want. I wonder if there was a better
way, however! <g>
PeterD, the Darkstar Network
To email, fix my address!
ExpertZone!
Daiya Mitchell - 28 Apr 2005 00:48 GMT
>> Not effiecient! <g>
>>
[quoted text clipped - 3 lines]
> Wrote a macro. Works for what I want. I wonder if there was a better
> way, however! <g>
Nope. There's a lot of predefined commands in Tools | Customize, but
PasteUnformatted is NOT one of them.
Graham Mayor - 28 Apr 2005 05:27 GMT
Add the following macro to a toolbar button
Sub PasteUnfText()
On Error GoTo oops
Selection.PasteSpecial DataType:=wdPasteText, Placement:= _
wdInLine
End
oops:
Beep
End Sub
http://www.gmayor.com/installing_macro.htm

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
>>> Not effiecient! <g>
>>>
[quoted text clipped - 6 lines]
> Nope. There's a lot of predefined commands in Tools | Customize, but
> PasteUnformatted is NOT one of them.