Using recordsets, and print#, you can scroll through the tables and write the records to a file.
you would create the recordset, open a file, and use something like:
rs.movefirst
do while not rs.eof and rs.bof
print# rs.field1 & "," & rs.field2....., hndOutputFile
rs.movenext
loop
Something like that should get you going.....