I want to write a code in VB.NET, when user clicks on the Spell Check button, it checks for the spelling in the text area of the form.
From Add References I added a COM object
SPELLCHKLib
It has a SpellCheckClass, that exposes me check() method, when I create as object of this class.
Dim objSplChk As New SPELLCHKLib.SpellCheckClass
objSplChk.Check(Me.txtEnlrgDesc.Text)
But how to use it ? Anyone, who can guide me ?
Thanks in advance.
From Add References I added a COM object
SPELLCHKLib
It has a SpellCheckClass, that exposes me check() method, when I create as object of this class.
Dim objSplChk As New SPELLCHKLib.SpellCheckClass
objSplChk.Check(Me.txtEnlrgDesc.Text)
But how to use it ? Anyone, who can guide me ?
Thanks in advance.