mark 导入dbf文件
你直接写代码导入也可以
Dim dlg As new openFileDialog
If dlg.ShowDialog = DialogResult.OK Then
Dim str_oleConn As String = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & FileSys.GetParentPath(dlg.FileName) & ";Extended Properties=dBASE IV;"
Dim ole_conn As New System.Data.OleDb.OleDbConnection(str_oleConn)
Try
ole_conn.Open()
Dim cmd As New System.Data.OleDb.OleDbCommand("select * from " & FileSys.GetName(dlg.FileName), ole_conn)
Dim reader As object = cmd.ExecuteReader()
Do While reader.Read()
If reader(0).Gettype.Name <> "DBNull" Then
output.show(reader(0))
Else
output.show("空值")
End If
Loop
msgbox("查询成功")
Catch ex As Exception
MessageBox.Show(ex.Message)
Finally
ole_conn.Close()
End Try
End If
http://www.foxtable.com/bbs/dispbbs.asp?BoardID=2&ID=72525&skin=0