
This method invokes an ActiveX method.
The ActiveX methods may or may not have additional parameter. Check the Intelligent Help to figure out what they are.
The return value depends on the ActiveX method.
The recommended convention is passing the control identifier directly:
Copy Code |
|---|
(Odcl_AxControl_DoMethod MyControlReference [as Reference] sMethodName [as String] ...) |
An alternative convention is to identify the control by providing the project file, the dialog name and the control name:
Copy Code |
|---|
(Odcl_AxControl_DoMethod ProjectFile [as String] DialogName [as String] ControlName [as String] sMethodName [as String] ...) |
For more information on this method please refer to the ActiveX control's documentation. To find it online please go to http://msdn.microsoft.com.
Copy Code |
|---|
; Invoke (Setq rValue (Odcl_AxControl_DoMethod MyProject_MyForm_MyControl "RangeFromPoint" 10 15)) |