ENTRY OnGotFocus(IN INT _refId) ; script action END OnGotFocus |
ENTRY XXX_OnGotFocus ; script action END XXX_OnGotFocus |
| _refId | Parameter of Int type (required for global handler). |
| XXX | Name of the reference variable assigned to Windows control (without the character "_"). |
ENTRY List_OnGotFocus ; script actions END List_OnGotFocus |
ENTRY OnGotFocus(IN INT _refId)
; _refId - value of local reference variable
; assigned to Windows control
IF _refId = 0 THEN
; no reference variable assigned
ELSIF _refId = _editRefId THEN
; script actions
ENDIF
END OnGotFocus |