123FakeSt
IS-IT--Management
- Aug 4, 2003
- 182
Does anyone know what the "Extended Properties" should be to set up a connection to a VFP database?
The early bird gets the worm, but the second mouse gets the cheese.
Code:
Function OpenDBFConn(Path)
Dim Conn: Set Conn = CreateObject("ADODB.Connection")
Conn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _
"Data Source=" & Path & ";" & _
"Extended Properties=""FOXPRO 8.0;"";"
Set OpenDBFConn = Conn
End Function
The early bird gets the worm, but the second mouse gets the cheese.