Hello,
Below is the code unit responsible for the error, "Runtime error 3706,
Provider not found, It may not be properly installed."
This is happening while running the application after the installation and
happening only on few PCs.
Can anybody give any hint on a solution for this?
Function goGetconnection(roCnn As Object, ByVal vsDataPath As String) As
Object
With roCnn
If Not roCnn.State = adStateOpen Then
.ConnectionString = "Provider=MSDASQL.4;DBQ=" & vsDataPath &
";Driver={Microsoft dBase Driver (*.dbf)};Extended Properties=""DefaultDir="
& vsDataPath & ";DriverId=21;FIL=dBase
III;MaxBufferSize=2048;PageTimeout=600;"""
.Open
End If
End With
Set goGetconnection = roCnn
End Function
Thanks and Regards
Sathian