Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim r1 As Single, r2 As Single, r3 As Single
If IsNumeric(TextBox1.Text) = True Then
r1 = CSng(TextBox1.Text)
Else
MsgBox "Must Be a Number"
TextBox1.SetFocus
Exit Sub
End If
If IsNumeric(TextBox2.Text) = True Then
r2 = CSng(TextBox2.Text)
Else
MsgBox "Must Be a Number"
TextBox2.SetFocus
Exit Sub
End If
r3 = r1 + r2
Msgbox r3