Re: Forcing IE to open Excel Workbooks in a New Instance
[ Follow Ups ] [ Post Followup ] [ Intranet eXchange ] [ IDM Home ]
Posted by cj on April 16, 2002 at 11:26:18:
In Reply to: Forcing IE to open Excel Workbooks in a New Instance posted by Paishe on August 15, 2000 at 13:4:23:
<script language="jscript">
function exportToExcel()
{
var ExcelSheet = new ActiveXObject("Excel.Sheet");
ExcelSheet.ActiveSheet.Cells(1,1).Value = "ID";
ExcelSheet.ActiveSheet.Cells(1,2).Value = "Name";
ExcelSheet.ActiveSheet.Cells(2,1).Value = "1";
ExcelSheet.ActiveSheet.Cells(2,2).Value = "ABC";
ExcelSheet.Application.Visible = true;
}
</script>
Follow Ups:
[ Follow Ups ] [ Post Followup ] [ Intranet eXchange ] [ IDM Home ]