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:
Thanksvb.net Code:
Dim oConn As OleDbConnection = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source='c:\';Extended Properties=dBASE IV;User ID=Admin;Password=;") Dim OCmd As OleDbCommand = New OleDbCommand(strsql, oConn) oConn.Open() ............................ OCmd.ExecuteNonQuery() oConn.Close()




Reply With Quote