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.
Sub validControlName_ValidEventName([SpecifiedArg1, SpecifiedArg2, ...])
Public Event T1_KeyPress(KeyAscii as Integer)
Public Event ImSoCute(ReallyIAm as Integer)
Private Sub Text1_KeyPress(KeyAscii as Integer)
RaiseEvent T1_KeyPress KeyAscii
End Sub
Private Sub Text2_KeyPress(KeyAscii as Integer)
RaiseEvent ImSoCute KeyAscii
End Sub
Sub HappyFish1_T1_KeyPress(KeyAscii as Integer)
'do whatever, for example prevent anything but 0-9
End Sub
Sub HappyFish1_ImSoCute(ReallyIAm as Integer)
'do whatever
End Sub