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

Upgrade to version 27

File:
1 edited

Legend:

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

    r456 r829  
    66  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
    77  ORFn, uCore, StdCtrls, CheckLst, ComCtrls,ExtCtrls,rOrders,fOrders,uOrders,
    8   fFrame,ORCtrls,fAutoSz;
     8  fFrame,ORCtrls,fAutoSz, VA508AccessibilityManager;
    99
    1010type
     
    4848implementation
    4949
     50uses
     51  VA2006Utils;
     52
    5053{$R *.DFM}
    5154
     
    8386  DoesDestEvtOccur:boolean;
    8487begin
     88  try
     89  self.btnOK.Enabled := false;
    8590  DoesDestEvtOccur := False;
    8691  uAutoAC := True;
     
    104109    uAutoAC := False;
    105110  end;
     111  finally
     112    self.btnOK.Enabled := True;
     113  end;
    106114  Close;
    107115end;
     
    114122procedure TfrmODActive.FormCreate(Sender: TObject);
    115123begin
     124  FixHeaderControlDelphi2006Bug(hdControl);
    116125  ActiveOrderList := TList.Create;
    117126  FOrderView      := TOrderView.Create;
     
    208217    ARect := TheeRect;
    209218    Canvas.FillRect(ARect);
    210     Canvas.Pen.Color := clSilver;
     219    Canvas.Pen.Color := Get508CompliantColor(clSilver);
    211220    Canvas.MoveTo(ARect.Left, ARect.Bottom - 1);
    212221    Canvas.LineTo(ARect.Right, ARect.Bottom - 1);
Note: See TracChangeset for help on using the changeset viewer.