Apr 7, 2008 #1 sabev Programmer Sep 27, 2002 47 US I need to open word, excel and .jpgs on the client with some jscript (or anything that would work). This is VB ASP.NET. The files I want to open are not on the client or server, but I can UNC to them or map the server. Thanks
I need to open word, excel and .jpgs on the client with some jscript (or anything that would work). This is VB ASP.NET. The files I want to open are not on the client or server, but I can UNC to them or map the server. Thanks
Apr 7, 2008 #2 BabyJeffy Programmer Sep 10, 2003 4,189 GB ...This is VB ASP.NET Click to expand... Well, this is the Javascript forum. Good luck! Cheers, Jeff [tt]Jeff's Blog [!]@[/!] CodeRambler http://www.coderambler.com/http://www.coedit.co.uk/[/tt] Make sure your web page and css validates properly against the doctype you have chosen - before you attempt to debug a problem! FAQ216-6094 Upvote 0 Downvote
...This is VB ASP.NET Click to expand... Well, this is the Javascript forum. Good luck! Cheers, Jeff [tt]Jeff's Blog [!]@[/!] CodeRambler http://www.coderambler.com/http://www.coedit.co.uk/[/tt] Make sure your web page and css validates properly against the doctype you have chosen - before you attempt to debug a problem! FAQ216-6094
Apr 8, 2008 Thread starter #3 sabev Programmer Sep 27, 2002 47 US Well it is a javascript question. I'm trying this - function openFile(){ var excel = new ActiveXObject("Excel.Application"); } I get this error - Microsoft JScript runtime error: Automation server can't create object. Upvote 0 Downvote
Well it is a javascript question. I'm trying this - function openFile(){ var excel = new ActiveXObject("Excel.Application"); } I get this error - Microsoft JScript runtime error: Automation server can't create object.
Apr 8, 2008 #4 ggriffit Programmer Oct 25, 2002 1,578 GB take a look at http://www.greggriffiths.org/webdev/both/excel/activex.html especially the links at the bottom which cover this issue. Greg Griffiths Livelink Certified Developer & ECM Global Star Champion 2005 & 2006 http://www.greggriffiths.org/livelink/ Upvote 0 Downvote
take a look at http://www.greggriffiths.org/webdev/both/excel/activex.html especially the links at the bottom which cover this issue. Greg Griffiths Livelink Certified Developer & ECM Global Star Champion 2005 & 2006 http://www.greggriffiths.org/livelink/
Apr 9, 2008 Thread starter #5 sabev Programmer Sep 27, 2002 47 US Thanks Greg, that's just what I did and it works great. Now, I need something to open .jpgs. Upvote 0 Downvote