Hello,
I have this problem where I have a textbox, and and I need to find the first occurance of "</font>" and remove that and everything after it
Thanks a bunch,
Dimava
Printable View
Hello,
I have this problem where I have a textbox, and and I need to find the first occurance of "</font>" and remove that and everything after it
Thanks a bunch,
Dimava
Like:
VB Code:
Text1.Text = Left$(Text1.Text, InStr(Text1.Text, "</font>") - 1)
Bruce.
that did it, thanks