Changeset 46 for trunk/Forms/UFormImportSource.pas
- Timestamp:
- Jul 15, 2016, 2:24:18 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormImportSource.pas
r33 r46 7 7 uses 8 8 Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls, 9 ActnList, Menus, ExtCtrls, UAcronym;9 ActnList, Menus, ExtCtrls, MaskEdit, UAcronym; 10 10 11 11 type … … 25 25 CheckBoxEnabled: TCheckBox; 26 26 ComboBox1: TComboBox; 27 EditUserName: TEdit; 27 28 EditName: TEdit; 28 29 EditURL: TEdit; 30 EditPassword: TEdit; 29 31 Label1: TLabel; 30 32 Label2: TLabel; 31 33 Label3: TLabel; 32 34 Label4: TLabel; 35 Label5: TLabel; 36 Label6: TLabel; 33 37 ListBox1: TListBox; 34 38 MenuItem1: TMenuItem; … … 132 136 CheckBoxEnabled.Checked := ImportSource.Enabled; 133 137 ImportSource.Categories.AssignToStrings(ListBox1.Items); 138 EditUserName.Text := ImportSource.UserName; 139 EditPassword.Text := ImportSource.Password; 134 140 end; 135 141 … … 141 147 ImportSource.Enabled := CheckBoxEnabled.Checked; 142 148 ImportSource.Categories.AssignFromStrings(ListBox1.Items); 149 ImportSource.UserName := EditUserName.Text; 150 ImportSource.Password := EditPassword.Text; 143 151 end; 144 152
Note:
See TracChangeset
for help on using the changeset viewer.