Changeset 29 for trunk/Forms/UFormImportSource.pas
- Timestamp:
- Jul 12, 2016, 4:41:03 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormImportSource.pas
r28 r29 17 17 ButtonOk: TButton; 18 18 ButtonCancel: TButton; 19 CheckBoxEnabled: TCheckBox; 19 20 ComboBox1: TComboBox; 20 21 EditName: TEdit; … … 78 79 if (ComboBox1.ItemIndex = -1) and (ComboBox1.Items.Count > 0) then 79 80 ComboBox1.ItemIndex := 0; 81 CheckBoxEnabled.Checked := ImportSource.Enabled; 80 82 end; 81 83 … … 85 87 ImportSource.URL := EditURL.Text; 86 88 ImportSource.Format := TImportFormat(ComboBox1.Items.Objects[ComboBox1.ItemIndex]); 89 ImportSource.Enabled := CheckBoxEnabled.Checked; 87 90 end; 88 91
Note:
See TracChangeset
for help on using the changeset viewer.