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.
DEFINE CLASS ExtendEditBox AS EditBox
AllowEnters = .T.
PROCEDURE KeyPress
LPARAMETERS KeyCode, ShiftAltCtrl
IF m.KeyCode = 13 AND !This.AllowEnters
NODEFAULT
ENDIF
ENDPROC
ENDDEFINE
PARAMETERS nKeyCode, nShiftAltCtrl
IF nKeyCode = 13
NODEFAULT
ENDIF