Changeset 71 for trunk/Forms
- Timestamp:
- Dec 13, 2021, 6:48:48 PM (3 years ago)
- Location:
- trunk/Forms
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormContact.lfm
r58 r71 18 18 Top = 8 19 19 Width = 969 20 ActivePage = TabSheet Social20 ActivePage = TabSheetWork 21 21 Anchors = [akTop, akLeft, akRight, akBottom] 22 22 ParentFont = False 23 TabIndex = 423 TabIndex = 2 24 24 TabOrder = 0 25 25 object TabSheetGeneral: TTabSheet … … 312 312 ParentFont = False 313 313 TabOrder = 15 314 end 315 object Label56: TLabel 316 Left = 16 317 Height = 24 318 Top = 480 319 Width = 95 320 Caption = 'Categories:' 321 ParentColor = False 322 ParentFont = False 323 end 324 object EditCategories: TEdit 325 Left = 144 326 Height = 42 327 Top = 472 328 Width = 254 329 ParentFont = False 330 TabOrder = 16 314 331 end 315 332 end … … 1035 1052 ParentFont = False 1036 1053 TabOrder = 10 1054 end 1055 object Label57: TLabel 1056 Left = 10 1057 Height = 24 1058 Top = 308 1059 Width = 99 1060 Caption = 'GroupWise:' 1061 ParentColor = False 1062 ParentFont = False 1063 end 1064 object EditGroupWise: TEdit 1065 Left = 173 1066 Height = 42 1067 Top = 304 1068 Width = 254 1069 ParentFont = False 1070 TabOrder = 11 1071 end 1072 object LabelOrganization12: TLabel 1073 Left = 451 1074 Height = 24 1075 Top = 312 1076 Width = 95 1077 Caption = 'GaduGadu:' 1078 ParentColor = False 1079 ParentFont = False 1080 end 1081 object EditGaduGadu: TEdit 1082 Left = 608 1083 Height = 42 1084 Top = 308 1085 Width = 254 1086 ParentFont = False 1087 TabOrder = 12 1037 1088 end 1038 1089 end -
trunk/Forms/UFormContact.lrj
r58 r71 18 18 {"hash":258182170,"name":"tformcontact.label46.caption","sourcebytes":[87,101,98,32,97,100,100,114,101,115,115,58],"value":"Web address:"}, 19 19 {"hash":230992922,"name":"tformcontact.label49.caption","sourcebytes":[71,101,110,100,101,114,58],"value":"Gender:"}, 20 {"hash":237074138,"name":"tformcontact.label56.caption","sourcebytes":[67,97,116,101,103,111,114,105,101,115,58],"value":"Categories:"}, 20 21 {"hash":325173,"name":"tformcontact.tabsheethome.caption","sourcebytes":[72,111,109,101],"value":"Home"}, 21 22 {"hash":138641338,"name":"tformcontact.label7.caption","sourcebytes":[69,45,109,97,105,108,58],"value":"E-mail:"}, … … 63 64 {"hash":22090,"name":"tformcontact.labelorganization6.caption","sourcebytes":[81,81,58],"value":"QQ:"}, 64 65 {"hash":59478250,"name":"tformcontact.label55.caption","sourcebytes":[77,97,116,114,105,120,58],"value":"Matrix:"}, 66 {"hash":207282410,"name":"tformcontact.label57.caption","sourcebytes":[71,114,111,117,112,87,105,115,101,58],"value":"GroupWise:"}, 67 {"hash":194852602,"name":"tformcontact.labelorganization12.caption","sourcebytes":[71,97,100,117,71,97,100,117,58],"value":"GaduGadu:"}, 65 68 {"hash":94740348,"name":"tformcontact.tabsheetsocial.caption","sourcebytes":[83,111,99,105,97,108],"value":"Social"}, 66 69 {"hash":10910938,"name":"tformcontact.label50.caption","sourcebytes":[77,121,115,112,97,99,101,58],"value":"Myspace:"}, -
trunk/Forms/UFormContact.pas
r70 r71 23 23 ButtonPrevious: TButton; 24 24 EditAim: TEdit; 25 EditCategories: TEdit; 25 26 EditMatrix: TEdit; 27 EditGaduGadu: TEdit; 28 EditGroupWise: TEdit; 26 29 EditYouTube: TEdit; 27 30 EditGender: TEdit; … … 142 145 Label54: TLabel; 143 146 Label55: TLabel; 147 Label56: TLabel; 148 Label57: TLabel; 144 149 Label6: TLabel; 145 150 Label7: TLabel; … … 150 155 LabelOrganization10: TLabel; 151 156 LabelOrganization11: TLabel; 157 LabelOrganization12: TLabel; 152 158 LabelOrganization2: TLabel; 153 159 LabelOrganization3: TLabel; … … 263 269 Contact.Fields[cfAim] := EditAim.Text; 264 270 Contact.Fields[cfIrc] := EditIrc.Text; 271 Contact.Fields[cfGroupWise] := EditGroupWise.Text; 272 Contact.Fields[cfGaduGadu] := EditGaduGadu.Text; 265 273 266 274 ReloadAllPropertiesTab; … … 280 288 EditAim.Text := Contact.Fields[cfAim]; 281 289 EditIrc.Text := Contact.Fields[cfIrc]; 290 EditGroupWise.Text := Contact.Fields[cfGroupWise]; 291 EditGaduGadu.Text := Contact.Fields[cfGaduGadu]; 282 292 end; 283 293 … … 307 317 Contact.Fields[cfUrl] := EditWeb.Text; 308 318 Contact.Fields[cfGender] := EditGender.Text; 319 Contact.Fields[cfCategories] := EditCategories.Text; 309 320 310 321 // Photo … … 406 417 EditWeb.Text := Contact.Fields[cfUrl]; 407 418 EditGender.Text := Contact.Fields[cfGender]; 419 EditCategories.Text := Contact.Fields[cfCategories]; 408 420 409 421 // Photo
Note:
See TracChangeset
for help on using the changeset viewer.