OK -The character unit problem is more common, but Word 2003 particularly
has a bad habit of randomly changing settings in tools > options, that are
stored in the Word data key of the registry. Deleting or renaming the Word
Data key in the registry is said to fix it - but the problem tends to
return. You can fix it permanently by adding the following line to an
autonew and an autoopen macro in normal.dot
Options.MeasurementUnit = wdInches
See 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
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Yes, because when I open "Options" and look at what is chosen from the
> "Measurement units:" drop-down list it says Points
[quoted text clipped - 15 lines]
>>> in points. Is there something else I should be doing in order to
>>> lock Word into inches?
Annette - 13 Aug 2007 14:36 GMT
Oh, boy...I've never done this before...but no better way to start out the
week but with a learning experience...Thank You!!!
> OK -The character unit problem is more common, but Word 2003 particularly
> has a bad habit of randomly changing settings in tools > options, that are
[quoted text clipped - 26 lines]
> >>> in points. Is there something else I should be doing in order to
> >>> lock Word into inches?
Graham Mayor - 13 Aug 2007 15:03 GMT
If you don't already have an autonet and an autoopen macro in the macro
listings, then simply copy the following
Sub Autoopen()
Options.MeasurementUnit = wdInches
End Sub
Sub AutoNew()
Options.MeasurementUnit = wdInches
End Sub
to the vba editor as shown in the web page.
At the bottom of that page you will see the same Autonew/open macros used to
address a number of the more common issues.

Signature
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
> Oh, boy...I've never done this before...but no better way to start
> out the week but with a learning experience...Thank You!!!
[quoted text clipped - 38 lines]
>>>>> measuring in points. Is there something else I should be doing
>>>>> in order to lock Word into inches?