Changeset 74 for trunk/Forms/UFormContacts.pas
- Timestamp:
- Dec 13, 2021, 11:45:47 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.