Save a .csv file to me.com

  • Thread starter Thread starter Wind54Surfer
  • Start date Start date
W

Wind54Surfer

Hi all,

I have:
========================
Private Sub btnJobsNotPaid_Click()

Dim FileName As String

FileName = "X:\JobsNotPaid.csv"
DoCmd.OpenQuery "qryExportJNPtoTable"
DoCmd.TransferText acExportDelim, "", "tblJobsNotPaid", FileName, True, ""

End Sub
============================
And want to save to website instead, is there any way to do this with code?

Thanks for any help,
Emilio
 
Back
Top