Can't email a table

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi, I'm trying to email a table (Tbl_Test) but continually get the error
message -

Run-time error '2302'

Microsodt Access can't save the output data to the file you've selected.


The code I've used is:

DoCmd.SendObject acSendTable, "Tbl_Test", acFormatXLS, "Andrew B", , ,
"I-Trade", "Blurb", False, False

I've search online for the code number and description with no luck.

Any ideas?
 
Just remove the the last false statement. This one referes to a templatefile
(fullpath) if you don't want to use it just leave it blank
 
Back
Top