As others say, the limit is 30 custom text fields. But, if absolutely
required to have this much custom information, you could work out a
design where you store your own custom fields inside single custom field.
For example, here are four "sub-fields" held in one field:
[Text1]="Susan Smith";"4-Nov-1941";"Rome";3
where one T
text field holds a name, birthday, home town, and number of projects
with semicolons as the delimiter. You parse the fields into subfields
with your own code for your own use. You probably could build your own
input screens. You will have to watch field length as the text fields do
not have unlimited storage space (255 characters).
This will work--but it will take design and implementation.
So, like Julie said, what is it you are trying to do? Perhaps it can be
accomplished in other ways without this complexity.
--rms
www.rmschneider.com