RPC HELP TRPCBroker lstCall Method Example
From VistApedia
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.