Hi. I'm working to an application that exports some .dbf files from my server tables.I'm wondering if I'll distribute this app do I have to install some other components like MDAC,except Framework.

This is the way I use dbf files:
vb.net Code:
  1. Dim oConn As OleDbConnection = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source='c:\';Extended Properties=dBASE IV;User ID=Admin;Password=;")
  2. Dim OCmd As OleDbCommand = New OleDbCommand(strsql, oConn)
  3.        oConn.Open()
  4. ............................
  5.       OCmd.ExecuteNonQuery()
  6.      oConn.Close()
Thanks