Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations sizbut on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to communicate with Excel from JavaScript

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
Hi,
I am unable to understand how to communicate with Excel from Javascript. Could you please give me details how to do and if possible some code samples also.
Thanking you.
by
D.Umakanth
 
Hi.


An example:

<html>
<Script Language=&quot;JavaScript&quot;>

var oExcel=new ActiveXObject(&quot;Excel.Sheet&quot;);
oExcel.ActiveSheet.Cells(1,1).value=&quot;kiiiii&quot;;
oExcel.SaveAs(&quot;C:\\TEST.XLS&quot;);

</Script>
</html>

regards, Kirilla
 
Hi.

May be you are right, but I've never tried it with Netscape before. In IE it works fine. :)

regards, Kirilla
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top