I have been asked to rewrite a VBA tool into a C# application, but came across a line of code that I am not sure how to do the same thing in C# as it is done in VBA.
What would be the C# equivalent of the DoCMD.TransferText command to export data to a tab delimited file?
Here is the code currently being used in VBA:
DoCmd.TransferText acExportDelim, "TEMP_Tracker Export Specification", "TEMP_Tracker", "\\BulkInsert\UtilityNotes.txt", True
Any help on this is greatly appreciated :-)