VB Project Source Code

Text Calculator tutorial vb.net





Free download this tutorial link below

Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
         TextBox3.Text = Information.VarType(TextBox1) + Information.VarType(TextBox2.Text)
        TextBox1.Text = ""
        TextBox2.Text = ""
    End Sub
End Class