Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Spell checker
Message
General information
Forum:
Visual FoxPro
Category:
Third party products
Title:
Miscellaneous
Thread ID:
00837594
Message ID:
00838168
Views:
34
This message has been marked as the solution to the initial question of the thread.
What about MS Word?


Local lcString,oWord,loDocument,loSelection,loSelectionFinal
oWord = Createobject("word.application")
With oWord
.Documents.Add()
.Documents(1).Content = this.Value
.Documents(1).CheckSpelling()
.Selection.WholeStory()
If .Selection.Text # this.value
This.Value = .Selection.text
Thisform.Refresh()
Else
Messagebox("No spelling mistakes found","Congradulations")
Endif

*.Documents(1).Close(.F.)
*.Quit()

Endwith
Release oWord
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform