-1

I am making a small application that will read .csv files into a newly generated access table (generated with vb.net), I am filling this database with sql and now I would like to output that table as a .dbf file!

I can't find any info on this subject.

I know some of you will tell me to just make the script in vba in access, but there are some functions that require me to use vb.net and the client wants a single .exe file.

Gord Thompson
  • 98,607
  • 26
  • 164
  • 342
Gutanoth
  • 842
  • 4
  • 18
  • 37

1 Answers1

1

There is a forum post here that includes some VB.NET sample code to create a .dbf file and write some data into it. The code uses the Visual FoxPro OLEDB driver (VFPOLEDB) which is no longer distributed with Windows by default, but can be downloaded here.

Gord Thompson
  • 98,607
  • 26
  • 164
  • 342