Using Access 2000-
I am using the OutputTo method on a form, but when it exports the data, the data is formatted with all these borders around each piece of data. All I need is a comma delimited text file to be exported, without including the field names. Only the data in the recordset. Here is the code I have currently:
Private Sub Form_Dirty(Cancel As Integer)
DoCmd.OutputTo acOutputForm, "frmTest", acFormatTXT, "test.txt"
End Sub
I am using the OutputTo method on a form, but when it exports the data, the data is formatted with all these borders around each piece of data. All I need is a comma delimited text file to be exported, without including the field names. Only the data in the recordset. Here is the code I have currently:
Private Sub Form_Dirty(Cancel As Integer)
DoCmd.OutputTo acOutputForm, "frmTest", acFormatTXT, "test.txt"
End Sub