Syntax
Public Function GUIChange(formId As String,controlID As String)
Description
This functionused to generated handle to control change event.
Parameters
Key | Description |
formId | Form identifier, must be a number greater than 3000 and less than 10,000. |
controlID | Control identifier. If it was an empty string, this means that the event has been raised for the form. |
Sample
Public Sub main() CreateVTLForm "3100" , false CreateVTLControl "3100" , "txtA" , GUI_TEXT_BOXEnd SubPublic Sub GUIChange(formId,controlID) If controlID = "txtA" then AlertMessage("Change") End IfEnd Sub
See Also