G
Guest
When connecting to an .xls file in Visual C#, I get the
error 'Could not find installable ISAM driver.' I have
implemented solutions in KB article 283881, but still get
the message. I have reinstalled Office XP, Jet 4.0 SP8,
no luck.
string strConnect =
@"Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=D:\300Input.xls;Extended Properties=Excel
10.0;HDR=Yes";
OleDbConnection oConn = new OleDbConnection(strConnect);
try
{
oConn.Open(); //ISAM error here
}
catch (Exception Ex)
{
MessageBox.Show(Ex.Message);
}
Help Please!
Tx,
Matt
error 'Could not find installable ISAM driver.' I have
implemented solutions in KB article 283881, but still get
the message. I have reinstalled Office XP, Jet 4.0 SP8,
no luck.
string strConnect =
@"Provider=Microsoft.Jet.OLEDB.4.0;Data
Source=D:\300Input.xls;Extended Properties=Excel
10.0;HDR=Yes";
OleDbConnection oConn = new OleDbConnection(strConnect);
try
{
oConn.Open(); //ISAM error here
}
catch (Exception Ex)
{
MessageBox.Show(Ex.Message);
}
Help Please!
Tx,
Matt