Example sequence on VB.net
Multiplication Program on VB.net
Step to made Multiplication Program :
1. Add label, 3 textbox and 1 button
2. Double click on button and add the coding :
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
'----Write this----
TextBox3.Text = Val(TextBox1.Text) * Val(TextBox2.Text)
End Sub
3. Done compile this program and look for Multiplication Program
Comments
Post a Comment