source: contrib/Dms/op/convert_excel.js @ 3526

Revision 3526, 330 bytes checked in by afernandes, 13 years ago (diff)

Ticket #1416 - Disponibilizado modulos Timesheet e DMS para a comunidade.

  • Property svn:executable set to *
  • Property svn:mime-type set to text/plain
Line 
1//var logFile = fs.CreateTextFile("convertlog.txt", true);
2
3var source = WScript.Arguments(0);
4var target = WScript.Arguments(1);
5
6var ExcelApp;
7ExcelApp = new ActiveXObject("Excel.Application");
8var Newdoc;
9Newdoc = ExcelApp.Workbooks.Open(source);
10Newdoc.SaveAs(target, 44); // xlHTML = 44
11ExcelApp.Quit();
12
13
14
15//logFile.Close();
Note: See TracBrowser for help on using the repository browser.