Changeset 31 for trunk/Forms/UFormImportFormat.pas
- Timestamp:
- Jul 13, 2016, 10:34:13 AM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormImportFormat.pas
r28 r31 22 22 ButtonOk: TButton; 23 23 ButtonCancel: TButton; 24 ComboBoxType: TComboBox; 24 25 EditBlockEnd: TEdit; 25 26 EditBlockStart: TEdit; … … 27 28 Label1: TLabel; 28 29 Label2: TLabel; 30 Label3: TLabel; 29 31 Label8: TLabel; 30 32 Label9: TLabel; … … 166 168 procedure TFormImportFormat.Load(ImportFormat: TImportFormat); 167 169 begin 170 ComboBoxType.ItemIndex := Integer(ImportFormat.Kind); 168 171 Self.ImportFormat := ImportFormat; 169 172 EditName.Text := ImportFormat.Name; … … 175 178 procedure TFormImportFormat.Save(ImportFormat: TImportFormat); 176 179 begin 180 ImportFormat.Kind := TImportFormatKind(ComboBoxType.ItemIndex); 177 181 ImportFormat.Name := EditName.Text; 178 182 ImportFormat.Block.StartString := EditBlockStart.Text;
Note:
See TracChangeset
for help on using the changeset viewer.