Is there a function to remove an underscore in VB6?
For e.g
1234_45
change it to 123445.
Thanks a lot
Printable View
Is there a function to remove an underscore in VB6?
For e.g
1234_45
change it to 123445.
Thanks a lot
mystring = replace(mystring, "_", "")
thanks a lot. But got an error "overflow"Quote:
Originally Posted by BruceG
Sorry. It works. It is my fault to not declare it right.Quote:
Originally Posted by lucia