Hi all
I am currently trying to set my export table function to make a .csv file
with tab delimiter. The default is comma which i do not need. I tried
putting the specification Chr(9) for the specification name, but it said
that name is not available for access. Below is my code for my export button
click, it works already as it is but with the comma instead of the tab for
the delimiter.
Oh yeah i'm using access 2000.
strTableName = Me.lst_Export_Tables
DoCmd.TransferText acExportDelim, , strTableName, "C:\BookShop\Exported.csv"
Many thanks in advance
Xiang
I am currently trying to set my export table function to make a .csv file
with tab delimiter. The default is comma which i do not need. I tried
putting the specification Chr(9) for the specification name, but it said
that name is not available for access. Below is my code for my export button
click, it works already as it is but with the comma instead of the tab for
the delimiter.
Oh yeah i'm using access 2000.
strTableName = Me.lst_Export_Tables
DoCmd.TransferText acExportDelim, , strTableName, "C:\BookShop\Exported.csv"
Many thanks in advance
Xiang