Changeset 4 for trunk/Forms/UFormTable.pas
- Timestamp:
- Jan 18, 2015, 11:29:26 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormTable.pas
r2 r4 15 15 TFormTable = class(TForm) 16 16 ButtonOk: TButton; 17 ButtonCancel: TButton; 17 18 EditName: TEdit; 19 EditCaption: TEdit; 18 20 Label1: TLabel; 21 Label2: TLabel; 19 22 private 20 23 { private declarations } … … 36 39 begin 37 40 EditName.Text := Table.Name; 41 EditCaption.Text := Table.Caption; 38 42 end; 39 43 … … 41 45 begin 42 46 Table.Name := EditName.Text; 47 Table.Caption := EditCaption.Text; 43 48 end; 44 49
Note:
See TracChangeset
for help on using the changeset viewer.