Changing default style to Body Text?

  • Thread starter Jonas T Larsson
  • Start date
J

Jonas T Larsson

Hello all,
Is it possible to change the default style, e.g. when adding a new
paragraph after a heading or when pasting text to Body Text instead of
Normal style?

// Yours Jonas
 
G

Graham Mayor

Jonas said:
Hello all,
Is it possible to change the default style, e.g. when adding a new
paragraph after a heading or when pasting text to Body Text instead of
Normal style?

// Yours Jonas

You can set the default paragraph to follow any paragraph from the format >
style dialog.
For pasting - edit > paste special > unformatted text will paste it to the
current paragraph style.
You can do this by macro if preferred

Sub PasteUnfText()
On Error GoTo Oops
Selection.PasteSpecial DataType:=wdPasteText, Placement:=wdInLine
End
Oops:
Beep
End Sub

See http://www.gmayor.com/installing_macro.htm

--
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP

Web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
 
J

Jonas T Larsson

Neat :) most of the troubles solved now, time to start writing on the
thesis now then. Thanks Graham!

// Yours Jonas
 

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