word defaults to Enlish(US) even when changed

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

No matter how many times I set Engish(australia) as my default language word
reverts to English(US) paticularly after use of OCR. Is there any way to make
Enlish(Australia) appear in the set language box without English(US) also
appearing with a check mark against it
 
G'day LenWhy <[email protected]>,

Set the base language of all styles. If you are making documents from
normal.dot (File > New > Blank Document), ensure it has Normal style
defined with language = aussie.

If you are using many styles, it is easier to just run this macro.
Excerpt from an article being prepared for the MVP site.

---

Call this routine with your language constant. It sets the language
for all styles in this document that do not have no proofing set. This
makes it easy to flip between the English variants.

Public Sub LanguageSet()

Const LangId As Long = 3081 'Aussie

Dim Stile As Style

For Each Stile In ActiveDocument.Styles
With Stile
If .InUse Then 'did not disturb list
If Not .NoProofing Then .LanguageID = LangId
End If
End With
Next

Set Stile = Nothing
End Sub

Steve Hudson - Word Heretic

steve from wordheretic.com (Email replies require payment)
Without prejudice



LenWhy reckoned:
 
Hi =?Utf-8?B?TGVuV2h5?=,
No matter how many times I set Engish(australia) as my default language word
reverts to English(US) paticularly after use of OCR. Is there any way to make
Enlish(Australia) appear in the set language box without English(US) also
appearing with a check mark against it
You'll find an article in the Tips section of my website that describes how
language formatting works in Word in some detail. Read through that, checking
your system's settings as you go. My guess would be that the OCR software is
changing your language at the System (Windows) level (very impolite, however
it's doing it).

Cindy Meister
INTER-Solutions, Switzerland
http://homepage.swissonline.ch/cindymeister (last update Jun 8 2004)
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 :-)
 

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

Back
Top