Hi, is there a way of dynamically indicating what the variable names are in a type. Say I have:
Type Employee
FName as string
MName as string
LName as string
Addr1 as string
(and so on)
End Type
Say these names match fields in a database table. If I later add a new field in the table (Email, for example), I want to add to the Employee type: Email as string

Is there a way to do this without opening the code again and installing updates? I know when you read a recordset, you can dynamically determine the field names.

Thanks in advance.