Style problems in Word 07

G

Guest

In Office Word 07 (Windows Vista), I cannot find a way to solve a formatting
problem I’m having. When I highlight a paragraph to change its style, the
whole document changes to the style I chose for the selected paragraph. Also,
If I change a paragraph’s word-font size or color, the whole document changes
according to the style in the selected paragraph.

I opened Microsoft Vista’s “Modify Style†box, but, unlike in Windows XP,
there was no checkbox for “Automatically Updateâ€.

I also clicked on the Office Button and selected “Word Optionsâ€, and the
“Popular†on the “enable live preview†was already checked.

Furthermore, none of the “Styles†box selections solves the problem. Any
suggestions?

Mal
 
C

Cindy M.

Hi =?Utf-8?B?TWFs?=,
When I highlight a paragraph to change its style, the
whole document changes to the style I chose for the selected paragraph. Also,
If I change a paragraph’s word-font size or color, the whole document changes
according to the style in the selected paragraph.
Did this document (or its template) originate in Word 2007 or an earlier version?

The Automatically Update property for styles still exists, but the option won't
show up in the "Modify" dialog box unless it was turned on for the style when it
was created. You can still access it through the object model (a macro), however.

You might try running this macro to check the setting. Click in the paragraph,
then run the macro

Sub IsCurrentStyleAutoUpdate()
Dim styl As Word.Style

Set styl = Selection.Style
MsgBox "The style " & styl.NameLocal & _
"'s automatic update setting is " & _
styl.AutomaticallyUpdate
End Sub


Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 17 2005)
http://www.word.mvps.org

This reply is posted in the Newsgroup; please post any follow question or reply in
the newsgroup and not by e-mail :)
 
G

Guest

Thanks for your reply, Cindy.

Yes, I used the macro in Word 03. I had the difficulty in that edition, too.
 

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