Shared Custom Dictionary

  • Thread starter Thread starter Lasse
  • Start date Start date
L

Lasse

Hi

What is the correct procedure for sharing a Custom Dictionary between
multiple users?

My idea was to create the file, place it on our network and then each user
would get it when running our login script.

/Lasse
 
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.
 
Or even easier yet, why not just have the users click on Tools/ Options/ Custom Dictionaries/ Add … and identify the desired
dictionary?



Gil
 

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