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

Revision 3526, 329 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 WordApp;
7WordApp = new ActiveXObject("Word.Application");
8var Newdoc;
9Newdoc = WordApp.Documents.Open(source);
10Newdoc.SaveAs(target, 8);       // wdFormatHTML = 8
11WordApp.Quit();
12
13
14
15//logFile.Close();
Note: See TracBrowser for help on using the repository browser.