RPC HELP XWB DEFERRED CLEARALL Example: Difference between revisions

From VistApedia
Jump to navigationJump to search
Created page with " RPC Broker Help Home <h2>XWB DEFERRED CLEARALL Example</h2> The following is example of the XWB DEFERRED CLEARALL RPC: brkrRPCBroker1.RemoteProcedure..."
 
No edit summary
 
Line 8: Line 8:
     '''except'''
     '''except'''
       '''On''' EBrokerError '''do'''
       '''On''' EBrokerError '''do'''
      ShowMessage('Connection to server could not be established!');
        ShowMessage('Connection to server could not be established!');
     '''end;'''
     '''end;'''

Latest revision as of 22:39, 6 July 2015

RPC Broker Help Home

XWB DEFERRED CLEARALL Example

The following is example of the XWB DEFERRED CLEARALL RPC:

   brkrRPCBroker1.RemoteProcedure := 'XWB DEFERRED CLEAR';
   try
     brkrRPCBroker1.Call;
   except
     On EBrokerError do
       ShowMessage('Connection to server could not be established!');
   end;