Click to See Complete Forum and Search --> : How to Find % of a Number


SgiGod
February 25th, 2000, 10:43 PM
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.

d.paulson
February 26th, 2000, 12:38 PM
text3 = text2 * (text1/100)

Dhirendra123
February 26th, 2000, 08:05 PM
how about
text3.text = ( text2.text / text1.text ) * 100