I am trying to do an export with the delimiter ^, but it only delimits the first row and the rest is comma delimited.
I tried to make a export schema file from access and it works, but he export scema file does not follow the database so I can I make it do this ?
My export code :
DoCmd.TransferText acExportDelim, , "Core-ParticipantData", "g:\MLLPDev\test.txt", True
My export schema.ini file :
[test.txt]
Format = Delimited(^)
I tried to make a export schema file from access and it works, but he export scema file does not follow the database so I can I make it do this ?
My export code :
DoCmd.TransferText acExportDelim, , "Core-ParticipantData", "g:\MLLPDev\test.txt", True
My export schema.ini file :
[test.txt]
Format = Delimited(^)