Changeset 3 for trunk/Forms/UFormContact.pas
- Timestamp:
- Jan 29, 2018, 10:54:40 AM (7 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:ignore
-
old new 5 5 *.lps 6 6 *.res 7 vCardStudio.exe
-
- Property svn:ignore
-
trunk/Forms/UFormContact.pas
r2 r3 16 16 ButtonCancel: TButton; 17 17 ButtonOk: TButton; 18 EditSurname: TEdit; 19 EditEmail: TEdit; 20 EditPhone: TEdit; 18 21 EditName: TEdit; 22 EditCellPhone: TEdit; 19 23 Label1: TLabel; 24 Label2: TLabel; 25 Label3: TLabel; 26 Label4: TLabel; 27 Label5: TLabel; 28 Label6: TLabel; 29 ListView1: TListView; 30 MemoNotes: TMemo; 20 31 PageControlContact: TPageControl; 21 32 TabSheetGeneral: TTabSheet; … … 41 52 begin 42 53 EditName.Text := Contact.FirstName; 54 EditSurname.Text := Contact.LastName; 55 EditCellPhone.Text := Contact.TelCell; 56 EditPhone.Text := Contact.TelHome; 57 EditEmail.Text := Contact.EmailHome; 58 MemoNotes.Lines.Text := Contact.Note; 43 59 end; 44 60 … … 46 62 begin 47 63 Contact.FirstName := EditName.Text; 64 Contact.LastName := EditSurname.Text; 65 Contact.TelCell := EditCellPhone.Text; 66 Contact.TelHome := EditPhone.Text; 67 Contact.EmailHome := EditEmail.Text; 68 Contact.Note := MemoNotes.Lines.Text; 48 69 end; 49 70
Note:
See TracChangeset
for help on using the changeset viewer.