I am not familiar with the External Data functionality. Will this allow me to programmatically get a dbf file within Access.
I have a form that displays in a text box, a path name of of a file. The user can view that data by clicking a "view data" button. If the file is a .XLS or CVS, the code below opens up to an excel spreadsheet:
Code:
Dim oApp As Object
Set oApp = CreateObject("Excel.Application")
oApp.Visible = True
oApp.UserControl = True
oApp.Workbooks.Open strDataPathName
I need the code that will open up the foxpro database if the file is a DBF.
Can I programatically do this with the external data function?
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.