Is there a way to set the default so word 2002 pastes text using the destination style?
J John Garate Feb 5, 2006 #1 Is there a way to set the default so word 2002 pastes text using the destination style?
A Anne Troy Feb 5, 2006 #2 Hi, John. You can use a macro for that. http://vbaexpress.com/kb/getarticle.php?kb_id=18 ************ Hope it helps! Anne Troy www.OfficeArticles.com Check out: www.ExcelUserConference.com
Hi, John. You can use a macro for that. http://vbaexpress.com/kb/getarticle.php?kb_id=18 ************ Hope it helps! Anne Troy www.OfficeArticles.com Check out: www.ExcelUserConference.com
G Graham Mayor Feb 6, 2006 #3 Attach the following macro to a toolbar button and/or assign a keyboard shortcut. Sub PasteUnfText() On Error GoTo oops Selection.PasteSpecial DataType:=wdPasteText, Placement:= _ wdInLine End oops: Beep End Sub http://www.gmayor.com/installing_macro.htm
Attach the following macro to a toolbar button and/or assign a keyboard shortcut. Sub PasteUnfText() On Error GoTo oops Selection.PasteSpecial DataType:=wdPasteText, Placement:= _ wdInLine End oops: Beep End Sub http://www.gmayor.com/installing_macro.htm