Stangleboy
Programmer
I have been searching posts and FAQ but have not found any solution to an issue I have using the TransferText command in VBA. My code works but the resulting text file I produce has qoutes ("") at the beginning and end of each record. Can I strip or delete the quotes in VBA code prior to it creating the text file? Or maybe I should be looking at another process? Thank you in advance on your time on this inquiry.
Code Example:
Private Sub bttn_EmailList_Click()
DoCmd.TransferText acExportDelim, , "qry_EmailList", "C:Test.txt"
End Sub
Code Example:
Private Sub bttn_EmailList_Click()
DoCmd.TransferText acExportDelim, , "qry_EmailList", "C:Test.txt"
End Sub