If I have a textbox and the value = 12.00 what is the best way to strip out the decimal so that it looks like 1200 ?
Thanks for any help.
Printable View
If I have a textbox and the value = 12.00 what is the best way to strip out the decimal so that it looks like 1200 ?
Thanks for any help.
Try
Text1.Text = Replace(Text1.Text, ".", "")
multiply it by 100... another way to do it...