Hello Lasse,
I guess that would depend on how your login script is written.
I use the following.
Sub spellCheckAdd()
'
' SpellCheckAdd Macro
' Macro recorded 8/10/2008 by Gil Carter
'
With Options
.CheckSpellingAsYouType = True
.CheckGrammarAsYouType = False
.SuggestSpellingCorrections = True
.SuggestFromMainDictionaryOnly = True
.CheckGrammarWithSpelling = False
.ShowReadabilityStatistics = False
.IgnoreUppercase = True
.IgnoreMixedDigits = True
.IgnoreInternetAndFileAddresses = True
.AllowCombinedAuxiliaryForms = True
.EnableMisusedWordsDictionary = True
.AllowCompoundNounProcessing = True
.UseGermanSpellingReform = True
End With
ActiveDocument.ShowGrammaticalErrors = True
ActiveDocument.ShowSpellingErrors = True
Languages(wdEnglishUS).SpellingDictionaryType = wdSpelling
With CustomDictionaries
‘ .ClearAll
With .Add("C:\Patients\AMR\Custom201a.dic")
.LanguageSpecific = True
.LanguageID = wdEnglishUS
End With
With .Add("C:\Patients\AMR\TSMRMedDict.dic")
.LanguageSpecific = True
.LanguageID = wdEnglishUS
End With
End Sub
Cheers … Gil
Gil Carter, MD, JD
60 second peek movies of TSMR in regular use:
http://www.TenSecondMedicalRecord.com, the premium & most versatile EMR, in regular
use since 1990; pre-TSMR2008 versions remain free; uses Microsoft Word; can be used as an adjunct to other EMR programs.