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.
Private Sub button1_Click()
Dim iMyNum As Integer
iMyNum = 2 + 1
End Sub
---------------------------
Private Sub button2()
Call button1_Click()
[green]'now do other stuff[/green]
End Sub