Hello, We have a Microsoft Access Aplication that we give to customers to be able to enter in data and then export it to an informix database. My problem is we updated the table on the informix database and removed a field. So i tried to do the same thing in the access database table by removing the field, but when i try to export the table information to a flat file i get the following error:
Run-time error '3438':
The data being exported does not match the format described in the schema.ini file.
In the VBA i am running this code to export the information from the table to a flat file:
DoCmd.TransferText acExportDelim, "<informix table name>", "<title>", ExpPth.Value & "\<destination file>"
Thank you,
Jason Couto