Email table in text file format

Jatz_DA_WAY

Registered User.
Local time
, 17:55
Joined
Mar 22, 2006
Messages
19
Hi,
I am trying to email a table in text format using :

DoCmd.SendObject acSendTable, "Table", acFormatTXT, , , , "Results", "Attached are the reslts"

It sends the file in text file format, but it adds "-" & "|" characters all over the file. Is there a way that I can send the file in simple "Comma Separated" file format.

Thx,

Jatz
 
I haven't tried this but maybe this will do :

DoCmd.SendObject acSendTable, "Table", acFormatCSV, , , , "Results", "Attached are the reslts"
 

Users who are viewing this thread

Back
Top Bottom