write a program for two-number addition in Visual Basic. use components for input and getting results. Also create a button to reset all the Inputs
Dim A, B As Double
A = Text1.Text
B = Text2.Text
Text3.Text = A + B
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""