Hello dear friends this is my first question and i am new to vb.net and programming i am trying to build the simple xbase calculation like if i had 2 eggs value 2 dolars so 3 eags value calculated by program i did this code but the answer never show up in the textbox 4
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim a As Integer
a = TextBox1.Text
Dim b As Integer
b = TextBox2.Text
Dim c As Integer
c = TextBox3.Text
Dim d As Integer
d = TextBox4.Text
TextBox4.Text = b * c / a
End Sub
End Class
i want textbox automatically show result when i put the values.
thanks