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-Lib/ORDtTmRng.pas

    r456 r829  
    55uses
    66  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
    7   StdCtrls, ORFn, ORDtTm;
     7  StdCtrls, ORFn, OR2006Compatibility, ORDtTm;
    88
    99type
    10   TORfrmDateRange = class(TForm)
     10  TORfrmDateRange = class(Tfrm2006Compatibility)
    1111    lblStart: TLabel;
    1212    lblStop: TLabel;
     
    2121    FCalStart: TORDateBox;
    2222    FCalStop:  TORDateBox;
     23  protected
     24    procedure Loaded; override;
    2325  end;
    2426
     
    217219  FCalStop.TabOrder := 1;
    218220  ResizeAnchoredFormToFont(self);
     221  UpdateColorsFor508Compliance(self);
    219222end;
    220223
     
    225228end;
    226229
     230procedure TORfrmDateRange.Loaded;
     231begin
     232  inherited Loaded;
     233  UpdateColorsFor508Compliance(Self);
     234end;
     235
    227236end.
Note: See TracChangeset for help on using the changeset viewer.