Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Word SpellChecker example (Version 2)

COM and Automation

Word SpellChecker example (Version 2)

by  Mike Gagnon  Posted    (Edited  )
Code:
_SCREEN.Visible = .F.
LOCAL WORD,DOC,Uncorrected, Corrected
#DEFINE wdDialogToolsSpellingAndGrammar 828
#DEFINE  wdDoNotSaveChanges  0
Uncorrected = "Helllo world!"
WORD = CREATEOBJECT("Word.Application")
DOC = WORD.Documents.ADD
WORD.SELECTION.TEXT = Uncorrected
WORD.Dialogs(wdDialogToolsSpellingAndGrammar).SHOW
IF LEN(WORD.SELECTION.TEXT) <> 1 Then
   Corrected = WORD.SELECTION.TEXT
ELSE
   Corrected = Uncorrected
ENDIF
DOC.CLOSE(WdDoNotSaveChanges)
WORD.QUIT

Mike Gagnon
Register to rate this FAQ  : BAD 1 2 3 4 5 6 7 8 9 10 GOOD
Please Note: 1 is Bad, 10 is Good :-)

Part and Inventory Search

Back
Top