Sequence On VB.Net (Summing Program)


Example sequence on VB.net

Summing Program on VB.net

Step to made Summing 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 Summing Program


Comments