for example in this code
Public Class Form1
Dim a As Object
Dim b As Object
Dim c As Object
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
a = Val(TextBox1.Text)
b = Val(TextBox2.Text)
c = Val(TextBox3.Text)
TextBox3.Text = a + b
' TextBox4.Text = "a + b = c"
End Sub
End Class
How can i make TextBox4.Text show the numbers, (=) sign, and (+) sign i.e.
TextBox1.Text = "2" and TextBox2.Text = "3" and TextBox3.Text = "5"
How can i make TextBox4.Text = "2 + 3 = 5"
(the string not the value)