hello...
i have a section ov VBA that exports a table to a comma delimited .txt using:
DoCmd.TransferText acExportDelim, , "finalTable", "c:\database.txt"
which works great, but it has "" around all the text fields. i found some code that will generate an "on the fly" schema.ini file which should tell the export to not use the "" around the quotes - which also seems to be working because it creates this:
[database.txt]
ColNameHeader = False
CharacterSet = ANSI
Format = CSVDelimited
TextDelimiter = none
in schema.ini in the same directory as database.txt
however the export seems to be ignoring the schema.ini. i have googled this for 2 days and cannot find anything on this...
PLEASE HELP!!!
thanks in advance
-mike
i have a section ov VBA that exports a table to a comma delimited .txt using:
DoCmd.TransferText acExportDelim, , "finalTable", "c:\database.txt"
which works great, but it has "" around all the text fields. i found some code that will generate an "on the fly" schema.ini file which should tell the export to not use the "" around the quotes - which also seems to be working because it creates this:
[database.txt]
ColNameHeader = False
CharacterSet = ANSI
Format = CSVDelimited
TextDelimiter = none
in schema.ini in the same directory as database.txt
however the export seems to be ignoring the schema.ini. i have googled this for 2 days and cannot find anything on this...
PLEASE HELP!!!
thanks in advance
-mike