Ignore:
Timestamp:
Jul 7, 2010, 4:51:54 PM (14 years ago)
Author:
Kevin Toppenberg
Message:

Upgrading to version 27

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cprs/trunk/CPRS-Chart/rCover.pas

    r456 r830  
    124124begin
    125125  CallV('ORWCV1 COVERSHEET LIST', [nil]);
    126   Dest.Assign(RPCBrokerV.Results);
     126  FastAssign(RPCBrokerV.Results, Dest);
    127127end;
    128128
     
    176176  MixedCaseList(Src);
    177177  if Src.Count = 0 then Src.Add('0^No active medications found');
    178   Dest.Assign(Src);
     178  FastAssign(Src, Dest);
    179179end;
    180180
     
    198198          SetListFMDateTime('mmm dd,yy', TStringList(RPCBrokerV.Results), U, 3, TRUE);
    199199        end;
    200       Dest.Assign(RPCBrokerV.Results);
     200        FastAssign(RPCBrokerV.Results, Dest);
    201201      exit;
    202202    end;
     
    214214      ExtractActiveMeds(TStringList(tmplist), TStringList(RPCBrokerV.Results))
    215215    else
    216       tmpList.Assign(RPCBrokerV.Results);
     216      FastAssign(RPCBrokerV.Results, tmpList);
    217217    if ACase = TRUE then MixedCaseList(tmplist);
    218218    if AID = '10' then for i := 0 to tmplist.Count - 1 do    // capitalize SC exposures for problems
     
    241241          end;
    242242      end;
    243     Dest.Assign(tmplist);
     243    FastAssign(tmplist, Dest);
    244244  finally
    245245    tmplist.Free;
     
    257257  CallV('ORQQPL LIST', [Patient.DFN, ACTIVE_PROBLEMS]);
    258258  MixedCaseList(RPCBrokerV.Results);
    259   Dest.Assign(RPCBrokerV.Results);
     259  FastAssign(RPCBrokerV.Results, Dest);
    260260  for i := 0 to Dest.Count - 1 do
    261261    begin
     
    273273  CallV('ORQQAL LIST', [Patient.DFN]);
    274274  MixedCaseList(RPCBrokerV.Results);
    275   Dest.Assign(RPCBrokerV.Results);
     275  FastAssign(RPCBrokerV.Results, Dest);
    276276end;
    277277
     
    283283    MixedCaseList(Results);
    284284    SetListFMDateTime('mmm dd,yy', TStringList(Results), U, 3);
    285     Dest.Assign(Results);
     285    FastAssign(Results, Dest);
    286286  end;
    287287end;
     
    299299    end;
    300300//    MixedCaseList(Results);
    301     Dest.Assign(Results);
     301    FastAssign(Results, Dest);
    302302  end;
    303303end;
     
    316316    MixedCaseList(Results);
    317317    SetListFMDateTime('mmm dd,yy', TStringList(Results), U, 3);
    318     Dest.Assign(Results);
     318    FastAssign(Results, Dest);
    319319  end;
    320320end;
     
    327327    SetListFMDateTime('mmm dd,yy', TStringList(Results), U, 4);
    328328    if Results.Count = 0 then Results.Add('0^No vitals found');
    329     Dest.Assign(Results);
     329    FastAssign(Results, Dest);
    330330  end;
    331331end;
     
    339339    MixedCaseList(Results);
    340340    SetListFMDateTime('mmm dd,yy hh:nn', TStringList(Results), U, 2);
    341     Dest.Assign(Results);
     341    FastAssign(Results, Dest);
    342342  end;
    343343end;
     
    387387    if tmplst.Count = 0 then
    388388      tmplst.Add(NoDataText(SectionID = 'RMND'));
    389     DestList.Assign(tmplst);
     389    FastAssign(tmplst, DestList);
    390390  end;
    391391
     
    427427begin
    428428  CallV('ORWPT PTINQ', [Patient.DFN]);
    429   Dest.Assign(RPCBrokerV.Results);
     429  FastAssign(RPCBrokerV.Results, Dest);
    430430end;
    431431
Note: See TracChangeset for help on using the changeset viewer.