Export table as txt file : Access Import Export « Access « VBA / Excel / Access / Word
- VBA / Excel / Access / Word
- Access
- Access Import Export
Export table as txt file
Public Sub ExportTable()
DoCmd.OutputTo acOutputTable, "tblCustomer", acFormatTXT, _
"C:\BegVBA\Customer.txt"
End Sub
Related examples in the same category