Re: number beginning with zerro



Hi,

I still recommend storing the Phone number as a string,
but if you insist on storing as a number, then your example
'05712222286' will need a type int64 or similar.
In D5 StrToInt('05712222286') will raise an exception,
but StrToInt64('05712222286') will do the job.

Regards
Heiner


.