Published on March 2, 2005 By Dryheat In DesktopX
How do you create an object in Jscript. I have done this in vbscript, but the createobject function does not exist for jscript.
Comments
on Oct 15, 2007
Try this:
Code: javascript
  1. var ExcelSheet;
  2. ExcelSheet = new ActiveXObject("Excel.Sheet");