Issue With Jet 4.0... Could Not Find Installable ISAM
This much will work. Not sure of the options you picked and whered they came
from. I emliminate some of the options in the open statement to get it to
work.
Dim OConn As New ADODB.Connection
strFilePath = "c:\temp\abc.mdb"
OConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" & _
strFilePath & ";"
"Irfan Khan" wrote:
Hi,
Whenever I run following code I am getting "Could Not Find Installable
ISAM".... Please help... I have update registry also according to microsoft
support suggestions...
oConn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=" &
strFilePath & ";" & "Extended Properties=""text;HDR=Yes;FMT=Delimited"""
Regards
Irfan Khan
|