RPC HELP TRPCBroker lstCall Method Example: Difference between revisions
From VistApedia
Jump to navigationJump to search
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..." |
(No difference)
|
Latest revision as of 14:01, 5 July 2015
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.