Ignore:
Timestamp:
Jun 10, 2010, 3:13:12 PM (14 years ago)
Author:
Kevin Toppenberg
Message:

update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cprs/branches/tmg-cprs/CPRS-Chart/TMG_Extra/fWebTab.pas

    r453 r793  
    6868    RPCBrokerV.Param[1].Value := 'R';
    6969    RPCBrokerV.Param[1].ptype := literal;
    70     RPCResult := RPCBrokerV.StrCall;   {returns 1 if available, 0 if not available}
     70    //RPCResult := RPCBrokerV.StrCall;   {returns 1 if available, 0 if not available}
     71    CallBroker;
     72    if RPCBrokerV.Results.Count > 0 then begin
     73      RPCResult := RPCBrokerV.Results.Strings[0];
     74    end else begin
     75      RPCResult := '';
     76    end;
    7177    TMG_URL_RPC_Checked := true;
    7278    TMG_URL_RPC_Available := (RPCResult='1');
     
    7682    if (URLList <> nil) then begin
    7783      RPCBrokerV.remoteprocedure := 'TMG CPRS GET URL LIST';
    78       RPCBrokerV.Call;
     84      //RPCBrokerV.Call;
     85      CallBroker;
    7986      URLList.Assign(RPCBrokerV.Results);
    8087      if RPCBrokerV.Results.Count>0 then Result := RPCBrokerV.Results.Strings[0]
Note: See TracChangeset for help on using the changeset viewer.