K
krish
Hello all,
We are trying to add a custom dictionary in Word and need the
ActiveDocument to be updated with the newly added dictionary. Here's
what I mean:
Using this code:
With CustomDictionaries
.ClearAll
.Add( _
"C:\Documents and Settings\goundarn\Application Data
\Microsoft\Proof\CUSTOM.DIC" _
).LanguageSpecific = False
.Add("C:\Documents and Settings\goundarn\Desktop\test.dic").
_
LanguageSpecific = False
.ActiveCustomDictionary = CustomDictionaries.Item( _
"C:\Documents and Settings\goundarn\Application Data
\Microsoft\Proof\CUSTOM.DIC" _
)
End With
we are adding the dictionary to Word. Once we have added the
dictionary we need all the words in this dictionary to be
automatically updated if they have been marked for SpellChecking
before. Basically, we want the red underline of a word go away as
soon
as we add the dictionary to Word. The dictinary gets added
successfully but a word previously indicated as with spelling error
still shows this.
How can we apply the dictionary to refresh the document silently,
without the prompt to check spelling?
Thanks,
Neil.
We are trying to add a custom dictionary in Word and need the
ActiveDocument to be updated with the newly added dictionary. Here's
what I mean:
Using this code:
With CustomDictionaries
.ClearAll
.Add( _
"C:\Documents and Settings\goundarn\Application Data
\Microsoft\Proof\CUSTOM.DIC" _
).LanguageSpecific = False
.Add("C:\Documents and Settings\goundarn\Desktop\test.dic").
_
LanguageSpecific = False
.ActiveCustomDictionary = CustomDictionaries.Item( _
"C:\Documents and Settings\goundarn\Application Data
\Microsoft\Proof\CUSTOM.DIC" _
)
End With
we are adding the dictionary to Word. Once we have added the
dictionary we need all the words in this dictionary to be
automatically updated if they have been marked for SpellChecking
before. Basically, we want the red underline of a word go away as
soon
as we add the dictionary to Word. The dictinary gets added
successfully but a word previously indicated as with spelling error
still shows this.
How can we apply the dictionary to refresh the document silently,
without the prompt to check spelling?
Thanks,
Neil.