Hi Expert,
I have a problem in creating an underline for my last word in Richtextbox.
Can any one guide me on this.
I am creating an application which the last word is being check on my database, it is like spelling check.
Using KeyDown event with
Thanks and best regards.
I have a problem in creating an underline for my last word in Richtextbox.
Can any one guide me on this.
I am creating an application which the last word is being check on my database, it is like spelling check.
Using KeyDown event with
VB.NET:
if e.KeyCode = Keys.Space then
'check the last word/value
if lastword<>check to the database
' and create an underline for the last word.
end if
end if
Thanks and best regards.