Syntax
Public Function GUIDblClick(formID As String,controlID As String)
Description
This function used to handle double click event atspecificcontrol by given control ID.
Parameters
Key | Description |
formId | Form identifier, must be a number greater than 3000 and less than 10,000, value of type String |
controlID | Control identifier. If it was an empty string, this means that the event has been raised for the form, value of type String |
Sample
Public Sub main() CreateVTLForm "3100" , false CreateVTLControl "3100" , "btnA" , GUI_BUTTONEnd SubPublic Sub GUIDblClick(formId,controlID) If controlID = "btnA" then AlertMessage("D-Click") End IfEnd Sub
See Also