TheRealDeal
Technical User
Is there a way of linking to a FoxPro *.DBF file and utilize the current *.CDX file? I do not have it listed in the available(Built-in) list of external linking dBase options. Just in case, I use Access 2000.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dim rstFox As New ADODB.Recordset
Dim strSQLFox As String
Dim connFoxPro As String
connFoxPro = "Driver={Microsoft Visual FoxPro Driver};" & _
"SourceType=DBF;" & _
"SourceDB=\\yourpath;" & _
"Exclusive=No"
strSQLFox = "SELECT * FROM yourtable.dbf"
rstFox.Open strSQLFox, connFoxPro, adOpenDynamic, adLockOptimistic
With rstFox
.do something
End With