|
-
May 10th, 2005, 07:01 AM
#1
Thread Starter
New Member
Check Spell check is complete using word
I am using word's checkspell. I want to check whether the user has checked the whole document. If the user click's on the cancel or close's the spell check dialog then the application should notify the user that spell check is not complete... How can i track the spell check is complete or it has been interupted............
-
May 10th, 2005, 07:10 AM
#2
Re: Check Spell check is complete using word
Code:
ActiveDocument.SpellingChecked
That property on your document (not the active one )
Feeling like a fly on the inside of a closed window (Thunk!)
If I post a lot, it is because I am bored at work! ;D Or stuck...
* Anything I post can be only my opinion. Advice etc is up to you to persue...
-
May 11th, 2005, 03:31 AM
#3
Thread Starter
New Member
Re: Check Spell check is complete using word
Hi Ecniv,
It's not working..... actually i want to check whether the user has checked the whole document..... below is the code i wrote.... but it's not working..
Set oWord = CreateObject("Word.Application")
oWord.Documents.Open ("c:\abc.txt")
oWord.ActiveDocument.CheckSpelling
returnValue = oWord.ActiveDocument.SpellingChecked
If (returnValue = False) Then
MsgBox "Spell check Incomplete"
end if
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|