Changeset 46 for trunk/Forms
- Timestamp:
- Jul 15, 2016, 2:24:18 PM (8 years ago)
- Location:
- trunk/Forms
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormImportSource.lfm
r35 r46 1 1 object FormImportSource: TFormImportSource 2 2 Left = 492 3 Height = 4 033 Height = 444 4 4 Top = 313 5 5 Width = 604 6 6 Caption = 'Import source' 7 ClientHeight = 4 037 ClientHeight = 444 8 8 ClientWidth = 604 9 9 OnShow = FormShow … … 44 44 Left = 515 45 45 Height = 25 46 Top = 36546 Top = 406 47 47 Width = 75 48 48 Anchors = [akRight, akBottom] … … 54 54 Left = 413 55 55 Height = 25 56 Top = 36556 Top = 406 57 57 Width = 75 58 58 Anchors = [akRight, akBottom] … … 136 136 Left = 10 137 137 Height = 2 138 Top = 3 52138 Top = 393 139 139 Width = 580 140 140 Anchors = [akLeft, akBottom] 141 end 142 object Label5: TLabel 143 Left = 10 144 Height = 20 145 Top = 352 146 Width = 73 147 Caption = 'User name:' 148 ParentColor = False 149 end 150 object Label6: TLabel 151 Left = 305 152 Height = 20 153 Top = 351 154 Width = 65 155 Caption = 'Password:' 156 ParentColor = False 157 end 158 object EditUserName: TEdit 159 Left = 136 160 Height = 28 161 Top = 351 162 Width = 153 163 TabOrder = 10 164 end 165 object EditPassword: TEdit 166 Left = 436 167 Height = 28 168 Top = 351 169 Width = 153 170 EchoMode = emPassword 171 PasswordChar = '*' 172 TabOrder = 11 141 173 end 142 174 object ActionList1: TActionList -
trunk/Forms/UFormImportSource.lrt
r33 r46 8 8 TFORMIMPORTSOURCE.CHECKBOXENABLED.CAPTION=Enabled 9 9 TFORMIMPORTSOURCE.LABEL4.CAPTION=Categories: 10 TFORMIMPORTSOURCE.LABEL5.CAPTION=User name: 11 TFORMIMPORTSOURCE.LABEL6.CAPTION=Password: 10 12 TFORMIMPORTSOURCE.ACATEGORYREMOVE.CAPTION=Remove 11 13 TFORMIMPORTSOURCE.ACATEGORYADD.CAPTION=Add -
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.