Click here to Skip to main content
15,867,308 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
How do I find 3.5% of a number in Visual Basic? I'm... quite unsure on how to do this.
Posted

try: r = 0.01*3.5*number
 
Share this answer
 
Assuming you have created a textbox to accept a number, you need to just multiply that number by 0.035.

Somthing like this would do it.
VB
Public Class Form1

    Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged

    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim percentage As Double
        percentage = CDbl(TextBox1.Text)
        percentage = percentage * 0.035
        Label1.Text = percentage

    End Sub

    Private Sub Label1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Label1.Click

    End Sub
End Class
 
Share this answer
 
v2
Comments
Simon_Whale 6-Nov-10 19:26pm    
nice answer

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900