Changeset 57 for trunk/Forms/UFormContact.pas
- Timestamp:
- Dec 8, 2021, 8:56:27 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormContact.pas
r54 r57 22 22 ButtonOk: TButton; 23 23 ButtonPrevious: TButton; 24 EditAim: TEdit; 25 EditWindowsLive: TEdit; 26 EditYahoo: TEdit; 27 EditGoogleTalk: TEdit; 28 EditMsn: TEdit; 29 EditIrc: TEdit; 30 EditSkype: TEdit; 24 31 EditHomeAddressCity: TEdit; 25 32 EditHomeAddressCountry: TEdit; … … 37 44 EditAddressWorkStreetExtended: TEdit; 38 45 EditAniversary: TEdit; 46 EditJabber: TEdit; 47 EditIcq: TEdit; 39 48 EditWorkEmail: TEdit; 40 49 EditPager: TEdit; … … 66 75 EditMobile: TEdit; 67 76 EditWorkPhone: TEdit; 77 EditQq: TEdit; 68 78 GroupBox1: TGroupBox; 69 79 GroupBox2: TGroupBox; … … 81 91 Label19: TLabel; 82 92 Label2: TLabel; 93 Label20: TLabel; 94 Label21: TLabel; 83 95 Label22: TLabel; 96 Label23: TLabel; 84 97 Label24: TLabel; 85 98 Label25: TLabel; … … 107 120 Label45: TLabel; 108 121 Label46: TLabel; 122 Label47: TLabel; 123 Label48: TLabel; 109 124 Label5: TLabel; 110 125 Label6: TLabel; … … 114 129 LabelOrganization: TLabel; 115 130 LabelOrganization1: TLabel; 131 LabelOrganization2: TLabel; 132 LabelOrganization3: TLabel; 133 LabelOrganization4: TLabel; 134 LabelOrganization5: TLabel; 135 LabelOrganization6: TLabel; 116 136 MemoNotes: TMemo; 117 137 MenuItem1: TMenuItem; … … 122 142 PopupMenuPhoto: TPopupMenu; 123 143 SavePictureDialog1: TSavePictureDialog; 144 TabSheetChat: TTabSheet; 124 145 TabSheetOthers: TTabSheet; 125 146 TabSheetHome: TTabSheet; … … 137 158 procedure FormShow(Sender: TObject); 138 159 procedure TabSheetAllShow(Sender: TObject); 160 procedure TabSheetChatHide(Sender: TObject); 161 procedure TabSheetChatShow(Sender: TObject); 139 162 procedure TabSheetGeneralHide(Sender: TObject); 140 163 procedure TabSheetGeneralShow(Sender: TObject); … … 198 221 FormProperties.ReloadList; 199 222 FormProperties.UpdateInterface; 223 end; 224 225 procedure TFormContact.TabSheetChatHide(Sender: TObject); 226 begin 227 Contact.Fields[cfJabber] := EditJabber.Text; 228 Contact.Fields[cfIcq] := EditIcq.Text; 229 Contact.Fields[cfMsn] := EditMsn.Text; 230 Contact.Fields[cfSkype] := EditSkype.Text; 231 Contact.Fields[cfQq] := EditQq.Text; 232 Contact.Fields[cfGoogleTalk] := EditGoogleTalk.Text; 233 Contact.Fields[cfWindowsLive] := EditWindowsLive.Text; 234 Contact.Fields[cfYahoo] := EditYahoo.Text; 235 Contact.Fields[cfAim] := EditAim.Text; 236 Contact.Fields[cfIrc] := EditIrc.Text 237 end; 238 239 procedure TFormContact.TabSheetChatShow(Sender: TObject); 240 begin 241 EditJabber.Text := Contact.Fields[cfJabber]; 242 EditIcq.Text := Contact.Fields[cfIcq]; 243 EditMsn.Text := Contact.Fields[cfMsn]; 244 EditSkype.Text := Contact.Fields[cfSkype]; 245 EditQq.Text := Contact.Fields[cfQq]; 246 EditGoogleTalk.Text := Contact.Fields[cfGoogleTalk]; 247 EditWindowsLive.Text := Contact.Fields[cfWindowsLive]; 248 EditYahoo.Text := Contact.Fields[cfYahoo]; 249 EditAim.Text := Contact.Fields[cfAim]; 250 EditIrc.Text := Contact.Fields[cfIrc]; 200 251 end; 201 252
Note:
See TracChangeset
for help on using the changeset viewer.