|
-
Jul 25th, 2002, 03:46 PM
#1
Thread Starter
Junior Member
Best way to remove decimal point ?
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.
-
Jul 25th, 2002, 03:51 PM
#2
Addicted Member
Try
Text1.Text = Replace(Text1.Text, ".", "")
-
Jul 25th, 2002, 03:54 PM
#3
I wonder how many charact
multiply it by 100... another way to do it...
Last edited by nemaroller; Jul 25th, 2002 at 06:14 PM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|