Code Comments
Programming Forum and web based access to our favorite programming groups.I get a "Could Not Find Installable ISAM" error on my objConn.open()
statement. I suspect my connection string is bad. What I am trying to do i
s
open an Excel file on my local computer from my web server. Where you see
"MyComputerName" I actually have the name of my computer.
Dim objConn As New
System.Data.OleDb.OleDbConnection(" server=MyComputerName;Provider=Microsoft
.
Jet.OLEDB.4.0;Data Source=c:\temp.xls;Extended Properties=Excel 8.0;")
Dim objCmd As New System.Data.OleDb.OleDbCommand
objConn.Open()
objCmd.Connection = objConn
objCmd.CommandText = "INSERT INTO [Sheet1$] (F1) values ('111')"
objCmd.ExecuteNonQuery()
objConn.Close()
Any ideas on how to connect to my local computer from my web server?
Thanks...Steve
Post Follow-up to this messagehttp://www.google.com/search?q=Coul...nstallable+ISAM Also, this group is for "classic" ASP. The ASP.NET groups have "aspnet" in their names. Ray at work "Steve" <Steve@discussions.microsoft.com> wrote in message news:B400573C-435A-4A1C-8493-03B6C2A09618@microsoft.com... >I get a "Could Not Find Installable ISAM" error on my objConn.open() > statement. I suspect my connection string is bad. What I am trying to do > is > open an Excel file on my local computer from my web server. Where you see > "MyComputerName" I actually have the name of my computer. > > Dim objConn As New > System.Data.OleDb.OleDbConnection("server=MyComputerName;Provider=Microsof t.Jet.OLEDB.4.0;Data > Source=c:\temp.xls;Extended Properties=Excel 8.0;") > > Dim objCmd As New System.Data.OleDb.OleDbCommand > > objConn.Open() > > objCmd.Connection = objConn > objCmd.CommandText = "INSERT INTO [Sheet1$] (F1) values ('111')" > objCmd.ExecuteNonQuery() > > objConn.Close() > > Any ideas on how to connect to my local computer from my web server? > > Thanks...Steve >
Post Follow-up to this messagePowered by vBulletin
Copyright 2000-2006 Jelsoft Enterprises Limited.