Changeset 17 for trunk/Forms
- Timestamp:
- Feb 28, 2018, 12:56:11 PM (7 years ago)
- Location:
- trunk/Forms
- Files:
-
- 2 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormContacts.lfm
r14 r17 7 7 ClientHeight = 605 8 8 ClientWidth = 807 9 DesignTimePPI = 120 9 10 OnClose = FormClose 10 11 OnCreate = FormCreate 11 12 OnShow = FormShow 12 LCLVersion = '1.8.0. 4'13 LCLVersion = '1.8.0.6' 13 14 object ListView1: TListView 14 15 Left = 0 … … 32 33 item 33 34 Caption = 'Last Name' 34 Width = 387 35 Width = 100 36 end 37 item 38 Caption = 'Cell phone' 39 Width = 100 40 end 41 item 42 Caption = 'Home phone' 43 Width = 100 35 44 end> 36 45 MultiSelect = True … … 59 68 end 60 69 object ToolButton2: TToolButton 61 Left = 3070 Left = 24 62 71 Top = 2 63 72 Action = AModify 64 73 end 65 74 object ToolButton3: TToolButton 66 Left = 5975 Left = 47 67 76 Top = 2 68 77 Action = ARemove -
trunk/Forms/UFormContacts.pas
r15 r17 75 75 Item.SubItems.Add(MiddleName); 76 76 Item.SubItems.Add(LastName); 77 Item.SubItems.Add(TelCell); 78 Item.SubItems.Add(TelHome); 77 79 Item.Data := Contacts[Item.Index]; 78 80 end; -
trunk/Forms/UFormMain.lfm
r16 r17 167 167 Action = Core.AFindDuplicate 168 168 end 169 object MenuItem5: TMenuItem 170 Action = Core.AGenerate 171 end 169 172 end 170 173 object MenuItemHelp: TMenuItem -
trunk/Forms/UFormMain.pas
r16 r17 19 19 MenuItem3: TMenuItem; 20 20 MenuItem4: TMenuItem; 21 MenuItem5: TMenuItem; 21 22 MenuItemToolbar: TMenuItem; 22 23 MenuItemView: TMenuItem; … … 111 112 Control: TControl; 112 113 begin 113 for J := 0 to CoolBar1.ControlCount - 1 do begin114 for J := 0 to CoolBar1.ControlCount - 1 do begin 114 115 Control := CoolBar1.Controls[J]; 115 116 if Control is TToolBar then begin
Note:
See TracChangeset
for help on using the changeset viewer.