Syntax
Public Function CreateVTLForm(formID As Long, isDockable As Boolean, Optional Title As String = "" ) As Boolean
Description
This functions is used to create a form with a specific identifier and dockabel it with client terminal if isDockable is true. You should use this method before use CreateVTLControl Method .
Parameters
Key | Description |
formId | Form identifier, must be a number , value of type String. |
isDockable | The value can be one of the true or false; true, form is dockable with client terminal. False, form is not dockalbe, |
Title | The form caption , optional value of type String. |
Return value
Returns true if the control has been created. Otherwise, returns false. In order to get an error, call GetLastError() function.
Sample
Public Sub main() dim frmID frmID = "3600" CreateVTLForm CSTR(frmID) , trueEnd Sub
See Also