Changeset 31 for trunk/Forms/UFormGenerate.pas
- Timestamp:
- Nov 25, 2021, 1:18:44 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/UFormGenerate.pas
r29 r31 46 46 for I := 1 to SpinEditCount.Value do begin 47 47 Contact := Contacts.AddNew; 48 Contact.Fi rstName:= 'First ' + IntToStr(Random(10000));49 Contact. LastName:= 'Last ' + IntToStr(Random(10000));50 Contact.F ullName:= 'FullName ' + IntToStr(Random(100));51 Contact. TelCell:= IntToStr(Random(1000000000));52 Contact. TelHome:= IntToStr(Random(1000000000));48 Contact.Fields[cfFirstName] := 'First ' + IntToStr(Random(10000)); 49 Contact.Fields[cfLastName] := 'Last ' + IntToStr(Random(10000)); 50 Contact.Fields[cfFullName] := 'FullName ' + IntToStr(Random(100)); 51 Contact.Fields[cfTelCell] := IntToStr(Random(1000000000)); 52 Contact.Fields[cfTelHome] := IntToStr(Random(1000000000)); 53 53 end; 54 54 Close;
Note:
See TracChangeset
for help on using the changeset viewer.