Executes the InvokeMethod method of your UDO's custom business implementation DLL.
The InvokeMethod has the following signature:
TCHAR* InvokeMethod(CSboBusinessObject * refObj, const TCHAR* sInput)
The CSboBusinessObject object receives data from the GeneralData parameter of this method, which represents a record of this UDO.
The TCHAR object receives the string from the InvokeParams parameter of this method. You can use the InvokeMethod method as a dispatcher to other methods in your DLL, and use this string to determine how to dispatch to other functions in the DLL.
Copy Code