I am using 2010 in 2007. There is no help that i can find for VBA 2007 on my PC and I am not allowed to get on the internet. My manager allowed me on for this.
using:
Dim strExportPath As String
Dim strImportPath As String
strExportPath = "C:\ProplannerProcessing\ProPlannerStep1\WTAP.csv"
'export rs_selProplannerOutputRecords to .csv file
' DoCmd.TransferText acExportDelim,,"tblProPlannerOutput",
DoCmd.TransferText acExportDelim, "RouteDetailImportExportSpec", "tblProPlannerOutput", strExportPath, True
and get the error #3011 stating that it can't find the object (which I expect it to make since I am using acExportDelim) "WTAP#csv".
Does anyone see what I am doing wrong???
Joel
Joel
using:
Dim strExportPath As String
Dim strImportPath As String
strExportPath = "C:\ProplannerProcessing\ProPlannerStep1\WTAP.csv"
'export rs_selProplannerOutputRecords to .csv file
' DoCmd.TransferText acExportDelim,,"tblProPlannerOutput",
DoCmd.TransferText acExportDelim, "RouteDetailImportExportSpec", "tblProPlannerOutput", strExportPath, True
and get the error #3011 stating that it can't find the object (which I expect it to make since I am using acExportDelim) "WTAP#csv".
Does anyone see what I am doing wrong???
Joel
Joel