Dim num1, num2, sum As Double
num1 = txtFirstNum.Text A variable input any number can go here
num2 = txtSecondNum.Text A variable input any number can go here
sum = num1 + num2
txtoutput.Text = sum
My goal is to have the txtoutput show the equation 2 + 2 = 4
not just the sum 4
I have two input textboxes to enter the integers, a button to add them, and an output txtbox for the solution. Instead of just the sum I need to show the eqaution.
Please help. I am new and trying to learn.