|
-
February 25th, 2000, 11:43 PM
#1
How to Find % of a Number
I Have 3 text boxes the first text box the user will put in the % of the number the second text box will be the number to get the % from and the third will be answeer of text 1 and text 2.
What I need to know is how to do % of a number in
Visual Basic
Thanks in Advance
Donny S.
-
February 26th, 2000, 01:38 PM
#2
Re: How to Find % of a Number
text3 = text2 * (text1/100)
-
February 26th, 2000, 09:05 PM
#3
Re: How to Find % of a Number
how about
text3.text = ( text2.text / text1.text ) * 100
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
|