Looking for an ado connection string to a foxpro database.
thanks.
danny.
Printable View
Looking for an ado connection string to a foxpro database.
thanks.
danny.
I have a little trick to find any connect string for any database.
It is using RDO but you I think can use the connect string it generates with you ADO. Easy and efficient.
Sub Main()
Dim cnt2 As New rdoConnection
'will ask you information to connect
cnt2.EstablishConnection rdDriverPrompt
'displays the connectstring
MsgBox cnt2.Connect
End Sub
Tipi