Ignore:
Timestamp:
Jan 18, 2015, 11:29:26 PM (9 years ago)
Author:
chronos
Message:
  • Moved: Field and value data type declaration moved to separate unit.
  • Modified: Fields edit form is now modal and made need changes need to be accepted.
  • Added: 32x32 icons to actions.
  • Fixed: If fileds count or type changed then table values are updated.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/UFormTable.pas

    r2 r4  
    1515  TFormTable = class(TForm)
    1616    ButtonOk: TButton;
     17    ButtonCancel: TButton;
    1718    EditName: TEdit;
     19    EditCaption: TEdit;
    1820    Label1: TLabel;
     21    Label2: TLabel;
    1922  private
    2023    { private declarations }
     
    3639begin
    3740  EditName.Text := Table.Name;
     41  EditCaption.Text := Table.Caption;
    3842end;
    3943
     
    4145begin
    4246  Table.Name := EditName.Text;
     47  Table.Caption := EditCaption.Text;
    4348end;
    4449
Note: See TracChangeset for help on using the changeset viewer.