Export filterd query results as a tab-deliminated text file

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have done the programming groundwork to produce a filtered recordset.

Can anyone help on how I now get this to export in the specified ".txt" file
format, please? It MUST be TAB-delimited to be imported into another
database.

Thanks in anticipation.........

JMCS
 
Hi,
I think you can open your recordset, open text file for output, loop through
recordset and output records using print #1, rst!Field1, rst!Field2, etc
 
Back
Top