> 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

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<>
Graham Mayor - Word MVP
Web site www.gmayor.com
Word MVP web site www.mvps.org/word
<>>< ><<> ><<> <>>< ><<> <>>< <>>< ><<
Jonas T Larsson - 06 Apr 2004 14:29 GMT
Neat :) most of the troubles solved now, time to start writing on the
thesis now then. Thanks Graham!
// Yours Jonas
> You can set the default paragraph to follow any paragraph from the format >
> style dialog.
[quoted text clipped - 11 lines]
>
> See http://www.gmayor.com/installing_macro.htm