RPC HELP XWB DEFERRED CLEAR Example: Difference between revisions
From VistApedia
Jump to navigationJump to search
Created page with " RPC Broker Help Home <h2>XWB DEFERRED CLEAR Example</h2> The following is example of the XWB DEFERRED CLEAR RPC: brkrRPCBroker1.RemoteProcedure := 'X..." |
(No difference)
|
Latest revision as of 22:36, 6 July 2015
XWB DEFERRED CLEAR Example
The following is example of the XWB DEFERRED CLEAR RPC:
brkrRPCBroker1.RemoteProcedure := 'XWB DEFERRED CLEAR';
brkrRPCBroker1.Param[0].Value :='MYHANDLE';
brkrRPCBroker1.Param[0].PType := literal;
try
brkrRPCBroker1.Call;
except
On EBrokerError do
ShowMessage('Connection to server could not be established!');
end;