1. Make a new project called whatever you want
2. Add in 3 textboxes and a button
3. Name the textboxes firstbox, secondbox, and final. Name the button ADDbtn
4. Double Click your button and add the code
Code: Select all
Dim firstnumber As Integer
Dim secondnumber As Integer
Dim result As Integer
firstnumber = Firstbox.Text
secondnumber=Secondbox.Text
result = firstnumber + secondnumber
Final.Text= result
Try making other buttons that say other mathematical functions like subtract and divide using the same concept