Changeset 22 for trunk/Application


Ignore:
Timestamp:
Jun 16, 2011, 12:18:21 PM (13 years ago)
Author:
george
Message:
  • Modified: Optimalized reloading of columns list in item list.
  • Fixed: Add and modify function.
Location:
trunk/Application
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Application/UApplicationInfo.pas

    r19 r22  
    5050  Name := 'ChronIS';
    5151  Identification := 1;
    52   ReleaseDate := '14.6.2011';
     52  ReleaseDate := '16.6.2011';
    5353  MajorVersion := 0;
    5454  MinorVersion := 1;
  • trunk/Application/UDataTypes.pas

    r21 r22  
    8181    function CreateControl(Owner: TComponent): TWinControl; override;
    8282    procedure SetupControl(Control: TWinControl); override;
     83    function GetControlValue(Control: TWinControl): string; override;
    8384    procedure Load(CellValue: string); override;
    8485    procedure LoadDef(ACustomType: Integer); override;
     
    270271end;
    271272
     273function TDataTypeRelationOne.GetControlValue(Control: TWinControl): string;
     274begin
     275  Result := TEditButton(Control).Text;
     276end;
     277
    272278procedure TDataTypeRelationOne.Load(CellValue: string);
    273279begin
Note: See TracChangeset for help on using the changeset viewer.