Changeset 74 for trunk/Forms
- Timestamp:
- Dec 13, 2021, 11:45:47 PM (3 years ago)
- Location:
- trunk/Forms
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormContacts.lfm
r73 r74 14 14 object ListView1: TListView 15 15 Left = 0 16 Height = 8 0116 Height = 810 17 17 Top = 0 18 18 Width = 1210 … … 66 66 Left = 0 67 67 Height = 39 68 Top = 8 3368 Top = 842 69 69 Width = 1210 70 70 Align = alBottom … … 114 114 Left = 0 115 115 Height = 32 116 Top = 8 01116 Top = 810 117 117 Width = 1210 118 118 OnChange = ListViewFilter1Change … … 121 121 object StatusBar1: TStatusBar 122 122 Left = 0 123 Height = 36124 Top = 8 72123 Height = 27 124 Top = 881 125 125 Width = 1210 126 126 Panels = < -
trunk/Forms/UFormContacts.pas
r73 r74 355 355 for I := 0 to ListView1.Items.Count - 1 do 356 356 if ListView1.Items[I].Selected then begin 357 Strings.Clear; 357 358 TContact(ListView1.Items[I].Data).SaveToStrings(Strings); 358 359 Text := Text + Strings.Text; … … 375 376 for I := 0 to ListView1.Items.Count - 1 do 376 377 if ListView1.Items[I].Selected then begin 378 Strings.Clear; 377 379 TContact(ListView1.Items[I].Data).SaveToStrings(Strings); 378 380 Text := Text + Strings.Text; … … 562 564 ALoadFromFile.Enabled := Assigned(Contacts) and Assigned(ListView1.Selected); 563 565 ASaveToFile.Enabled := Assigned(Contacts) and Assigned(ListView1.Selected); 566 ACopy.Enabled := Assigned(Contacts) and Assigned(ListView1.Selected); 567 ACut.Enabled := Assigned(Contacts) and Assigned(ListView1.Selected); 568 APaste.Enabled := Assigned(Contacts) and (Clipboard.AsText <> ''); 564 569 end; 565 570
Note:
See TracChangeset
for help on using the changeset viewer.