Link to home
Start Free TrialLog in
Avatar of prem_kumar_25
prem_kumar_25

asked on

Can i Include Spell Check

I have an application and i would like to implement spell check to a Textbox
Can any one help me to do it.....

Thanking u in advance
Avatar of Marine
Marine

You can use WORD application object by referencing its library.
ASKER CERTIFIED SOLUTION
Avatar of mcrider
mcrider

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of prem_kumar_25

ASKER

Dear Marine

    When Itried this i cant Key any thing on to the doc....
Check this out its for asp but i think you can implement the same in vb

http://support.microsoft.com/support/kb/articles/Q214/5/45.asp

;->
Dear Mcrider

      Eventhough the site gave me an answer and after adding ur comment even . the word application is not closing by itself only the document is getting closed i would like to close the application even .. ur answer will be appritiated  my mail id is premkumar@dei.co.uk

Thanking u

prem
Are you doing the "Set oWDBasic = Nothing" in the same subroutine that you are defining "Dim oWDBasic As Object" ???

If not, you need to be... Otherwise, define the oWDBasic object in a module like this:

   Public oWDBasic As Object

When you set the object to nothing, the instance of Word will close...


Cheers!®©
By the way, thanks for the points!

Cheers!®©
You can add this code after the fileclose command in order to close the Word application:

oWDBasic.appclose

Good luck!