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.
Public Sub DisplayMessage (strMessage As String)
MsgBox strMessage
End Sub
Public Function MultiplyTwoNums (intNum1 As Integer, intNum2 As Integer) As Integer
MultiplyTwoNums = intNum1 * intNum2
End Function
Call DisplayMessage "This comes from DisplayMessage - 1"
Call DisplayMessage "This comes from Displaymessage - 2"
MsgBox "2 * 2 is " & MultiplyTwoNums (2, 2)
MsgBox "3 * 3 is " & MultiplyTwoNums (3, 3)