Changeset 31 for trunk/USystem.pas


Ignore:
Timestamp:
Nov 24, 2011, 10:03:48 AM (13 years ago)
Author:
chronos
Message:
  • Modified: Item list is separated from MainForm as ItemListForm.
  • Modified: Now it is possible to open multiple forms for same operation as View, Edit, Add, List. Open forms are listed in main windows tab list.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/USystem.pas

    r29 r31  
    8282    Base: TChronisBase;
    8383    procedure Load(ObjectId: Integer);
     84    procedure Assign(Source: TChronisObject);
    8485  end;
    8586
     
    719720end;
    720721
     722procedure TChronisObject.Assign(Source: TChronisObject);
     723begin
     724  Id := Source.Id;
     725  Table := Source.Table;
     726  Schema := Source.Schema;
     727  Name := Source.Name;
     728  Base := Source.Base;
     729  GroupId := Source.GroupId;
     730  PrimaryKey := Source.PrimaryKey;
     731end;
     732
    721733end.
    722734
Note: See TracChangeset for help on using the changeset viewer.