Hi,
I've searched through the threads but can't seem to find an answer. I have a Type structure namely
Type PersonalInfo
CompanyName As String * 50
Address1 As String * 50
Address2 As String * 50
City As String * 20
PostCode As String * 10
County As String * 20
Phone As String * 20
Fax As String * 20
ContactName As String * 50
Mobile As String * 20
Email As String * 50
Deleted As String * 1
End Type
My question is can I add a new record to this existing structure without screwing up the existing file that contains the current information. I.e. is there a way to "pad out" the existing text file to leave space for a new record?
Regards,
Don.
I've searched through the threads but can't seem to find an answer. I have a Type structure namely
Type PersonalInfo
CompanyName As String * 50
Address1 As String * 50
Address2 As String * 50
City As String * 20
PostCode As String * 10
County As String * 20
Phone As String * 20
Fax As String * 20
ContactName As String * 50
Mobile As String * 20
Email As String * 50
Deleted As String * 1
End Type
My question is can I add a new record to this existing structure without screwing up the existing file that contains the current information. I.e. is there a way to "pad out" the existing text file to leave space for a new record?
Regards,
Don.