Mar 29, 2005 #1 ashishraj14 Programmer Joined Mar 1, 2005 Messages 92 Location AU Using VB.NET how can I convert access table to tab delimited text file? Thanks
Mar 30, 2005 #2 ca8msm Programmer Joined May 9, 2002 Messages 11,327 Location GB You can read the table into a DataSet then just loop through each row and write out each column to a StreamWriter (with a tab seperating each column). ---------------------------------------------------------------------- Need help finding an answer? Try the search facilty (http://www.tek-tips.com/search.cfm) or read FAQ222-2244 on how to get better results. Upvote 0 Downvote
You can read the table into a DataSet then just loop through each row and write out each column to a StreamWriter (with a tab seperating each column). ---------------------------------------------------------------------- Need help finding an answer? Try the search facilty (http://www.tek-tips.com/search.cfm) or read FAQ222-2244 on how to get better results.