RPC HELP TRPCBroker lstCall Method Example

From VistApedia
Revision as of 14:01, 5 July 2015 by Kdtop (talk | contribs) (Created page with "<h2>lstCall Example</h2> The following program code demonstrates the use of the lstCall method in a hypothetical example of bringing back a list of user's keys and automatical...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

lstCall Example

The following program code demonstrates the use of the lstCall method in a hypothetical example of bringing back a list of user's keys and automatically filling a list box with data:

   procedure TForm1.Button1Click(Sender: TObject);
   begin
     brkrRPCBroker1.RemoteProcedure := 'GET MY KEYS';
     brkrRPCBroker1.lstCall(ListBox1.Items);
   end;

NOTE: For a demonstration using the lstCall method, please run the BrokerExample.EXE located in the ..\BDK32\Samples\BrokerEx directory.