export-to-excel

ActiveX Legacy Code not displaying Excel Application window

给你一囗甜甜゛ 提交于 2020-12-13 21:12:56
问题 I have the following legacy javascript code that runs ActiveX in an html report. This code works and displays an Excel sheet on the user's screen filled up with data from my report. //some initialisations here var Excel, Book; // Create the Excel application object. Excel = new ActiveXObject("Excel.Application"); // Make Excel visible. Excel.Visible = true; // Create a new work book. Book = Excel.Workbooks.Add(); //headers[] init here for (var j = 0; j < colCount; j++) { //setting my report

ActiveX Legacy Code not displaying Excel Application window

对着背影说爱祢 提交于 2020-12-13 21:09:40
问题 I have the following legacy javascript code that runs ActiveX in an html report. This code works and displays an Excel sheet on the user's screen filled up with data from my report. //some initialisations here var Excel, Book; // Create the Excel application object. Excel = new ActiveXObject("Excel.Application"); // Make Excel visible. Excel.Visible = true; // Create a new work book. Book = Excel.Workbooks.Add(); //headers[] init here for (var j = 0; j < colCount; j++) { //setting my report

ActiveX Legacy Code not displaying Excel Application window

断了今生、忘了曾经 提交于 2020-12-13 21:09:12
问题 I have the following legacy javascript code that runs ActiveX in an html report. This code works and displays an Excel sheet on the user's screen filled up with data from my report. //some initialisations here var Excel, Book; // Create the Excel application object. Excel = new ActiveXObject("Excel.Application"); // Make Excel visible. Excel.Visible = true; // Create a new work book. Book = Excel.Workbooks.Add(); //headers[] init here for (var j = 0; j < colCount; j++) { //setting my report

ActiveX Legacy Code not displaying Excel Application window

混江龙づ霸主 提交于 2020-12-13 21:07:31
问题 I have the following legacy javascript code that runs ActiveX in an html report. This code works and displays an Excel sheet on the user's screen filled up with data from my report. //some initialisations here var Excel, Book; // Create the Excel application object. Excel = new ActiveXObject("Excel.Application"); // Make Excel visible. Excel.Visible = true; // Create a new work book. Book = Excel.Workbooks.Add(); //headers[] init here for (var j = 0; j < colCount; j++) { //setting my report