A family of Microsoft relational database management systems designed for ease of use.
Access 2013 - Dbase (.dbf) Table Import option
I need to be able to import read/write Dbase dbf tables - yes they are still around so why has the standard option that was in Access 2010 gone?
I have seen mention of ISAM, which is gobbledegook to me. So please a simple answer - what do I need to install or change and how do I do it?
Microsoft 365 and Office | Access | For home | Windows
Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.
158 additional answers
Sort by: Most helpful
-
Anonymous
2015-04-16T23:59:57+00:00 I would suggest you remove the dll from your OneDrive account. It is illegal to distribute the file.
As has been noted earlier, if a user does not have it it can be obtained via the installation of the Access 2010 runtime.
-
Anonymous
2015-04-16T16:49:10+00:00 Here is a program I created that can import multiple DBF files in a folder. It can also export your Access tables. Note you will need the registry files I added that link as will. You may have to change the connection strings for your version of access.
VB Code
Registry and DLL file. / Will need admin rights to install registry files. This only adds DBF support
Link to the various connection string if you need to change them
http://www.connectionstrings.com/access/
Hopefully this helps you.
One final note the .dll file needs to be wherever the registry is pointing to. You can edit the registry files with a text editor, before installing them.
-
Anonymous
2015-04-16T16:46:18+00:00 Here is a program I created that can import multiple DBF files in a folder. It can also export your Access tables. Note you will need the registry files I added that link as will. You may have to change the connection strings for your version of access.
VB Code
Registry and DLL file. / Will need admin rights to install registry files. This only adds DBF support
Link to the various connection string if you need to change them
http://www.connectionstrings.com/access/
Hopefully this helps you.
-
Anonymous
2015-03-11T19:41:33+00:00 From this:
ddlNewAccessTable = "CREATE TABLE " & dbfTableName & " " & ddlColumns & ";"
Remove semicolon ; in the end:
ddlNewAccessTable = "CREATE TABLE " & dbfTableName & " " & ddlColumns & ""