| (sponsored link) | |
![]() |
Can't find your way in Office 2007? Try Classic Menu for Office 2007 ! |
|---|---|
VBScript Scripting Techniques > OLE Automation > MS Word
| SaveAs Use MS Word to convert Word documents to HTML |
|
|---|---|
| VBScript Code: | |
|
Option Explicit Doc2HTML "C:\Documents and Settings\MyUserID\My Documents\resume.doc" Sub Doc2HTML( myFile ) ' This subroutine opens a Word document, ' then saves it as HTML, and closes Word. ' If the HTML file exists, it is overwritten. ' If Word was already active, the subroutine ' will leave the other document(s) alone and ' close only its "own" document. ' ' Written by Rob van der Woude ' http://www.robvanderwoude.com ' Standard housekeeping Dim objDoc, objFile, objFSO, objWord, strFile, strHTML Const wdFormatDocument = 0 Const wdFormatDocument97 = 0 Const wdFormatDocumentDefault = 16 Const wdFormatDOSText = 4 Const wdFormatDOSTextLineBreaks = 5 Const wdFormatEncodedText = 7 Const wdFormatFilteredHTML = 10 Const wdFormatFlatXML = 19 Const wdFormatFlatXMLMacroEnabled = 20 Const wdFormatFlatXMLTemplate = 21 Const wdFormatFlatXMLTemplateMacroEnabled = 22 Const wdFormatHTML = 8 Const wdFormatPDF = 17 Const wdFormatRTF = 6 Const wdFormatTemplate = 1 Const wdFormatTemplate97 = 1 Const wdFormatText = 2 Const wdFormatTextLineBreaks = 3 Const wdFormatUnicodeText = 7 Const wdFormatWebArchive = 9 Const wdFormatXML = 11 Const wdFormatXMLDocument = 12 Const wdFormatXMLDocumentMacroEnabled = 13 Const wdFormatXMLTemplate = 14 Const wdFormatXMLTemplateMacroEnabled = 15 Const wdFormatXPS = 18 Const wdFormatOfficeDocumentTemplate = 23 (1) (1) (2) |
|
| Requirements: | |
| Windows version: | any |
| Network: | any |
| Client software: | MS Word |
| Script Engine: | any |
| Summarized: | Works in any Windows version, as long as MS Word is installed. |
| [Back to the top of this page] | |
| SaveAs Use MS Word to convert Word documents to PDF |
|
| VBScript Code: | |
|
Option Explicit Doc2PDF "C:\Documents and Settings\MyUserID\My Documents\resume.doc" Sub Doc2PDF( myFile ) ' This subroutine opens a Word document, then saves it as PDF, and closes Word. ' If the PDF file exists, it is overwritten. ' If Word was already active, the subroutine will leave the other document(s) ' alone and close only its "own" document. ' ' Requirements: ' This script requires the "Microsoft Save as PDF or XPS Add-in for 2007 ' Microsoft Office programs", available at: ' http://www.microsoft.com/downloads/details.aspx? ' familyid=4D951911-3E7E-4AE6-B059-A2E79ED87041&displaylang=en ' ' Written by Rob van der Woude ' http://www.robvanderwoude.com ' Standard housekeeping Dim objDoc, objFile, objFSO, objWord, strFile, strPDF Const wdFormatDocument = 0 Const wdFormatDocument97 = 0 Const wdFormatDocumentDefault = 16 Const wdFormatDOSText = 4 Const wdFormatDOSTextLineBreaks = 5 Const wdFormatEncodedText = 7 Const wdFormatFilteredHTML = 10 Const wdFormatFlatXML = 19 Const wdFormatFlatXMLMacroEnabled = 20 Const wdFormatFlatXMLTemplate = 21 Const wdFormatFlatXMLTemplateMacroEnabled = 22 Const wdFormatHTML = 8 Const wdFormatPDF = 17 Const wdFormatRTF = 6 Const wdFormatTemplate = 1 Const wdFormatTemplate97 = 1 Const wdFormatText = 2 Const wdFormatTextLineBreaks = 3 Const wdFormatUnicodeText = 7 Const wdFormatWebArchive = 9 Const wdFormatXML = 11 Const wdFormatXMLDocument = 12 Const wdFormatXMLDocumentMacroEnabled = 13 Const wdFormatXMLTemplate = 14 Const wdFormatXMLTemplateMacroEnabled = 15 Const wdFormatXPS = 18 Const wdFormatOfficeDocumentTemplate = 23 (1) (1) (2) |
|
| Requirements: | |
| Windows version: | any |
| Network: | any |
| Client software: | MS Word 2007 and the Microsoft Save as PDF or XPS Add-in for 2007 Microsoft Office programs |
| Script Engine: | any |
| Summarized: | Works in any Windows version, as long as MS Word 2007 and the Microsoft Save as PDF or XPS Add-in for 2007 Microsoft Office programs are installed. |
| [Back to the top of this page] | |
| SaveAs Use MS Word to convert Word documents to RTF |
|
| VBScript Code: | |
|
Option Explicit Doc2RTF "C:\Documents and Settings\MyUserID\My Documents\resume.doc" Sub Doc2RTF( myFile ) ' This subroutine opens a Word document, then saves it as RTF, and closes Word. ' If the RTF file exists, it is overwritten. ' If Word was already active, the subroutine will leave the other document(s) ' alone and close only its "own" document. ' ' Written by Rob van der Woude ' http://www.robvanderwoude.com ' Standard housekeeping Dim objDoc, objFile, objFSO, objWord, strFile, strRTF Const wdFormatDocument = 0 Const wdFormatDocument97 = 0 Const wdFormatDocumentDefault = 16 Const wdFormatDOSText = 4 Const wdFormatDOSTextLineBreaks = 5 Const wdFormatEncodedText = 7 Const wdFormatFilteredHTML = 10 Const wdFormatFlatXML = 19 Const wdFormatFlatXMLMacroEnabled = 20 Const wdFormatFlatXMLTemplate = 21 Const wdFormatFlatXMLTemplateMacroEnabled = 22 Const wdFormatHTML = 8 Const wdFormatPDF = 17 Const wdFormatRTF = 6 Const wdFormatTemplate = 1 Const wdFormatTemplate97 = 1 Const wdFormatText = 2 Const wdFormatTextLineBreaks = 3 Const wdFormatUnicodeText = 7 Const wdFormatWebArchive = 9 Const wdFormatXML = 11 Const wdFormatXMLDocument = 12 Const wdFormatXMLDocumentMacroEnabled = 13 Const wdFormatXMLTemplate = 14 Const wdFormatXMLTemplateMacroEnabled = 15 Const wdFormatXPS = 18 Const wdFormatOfficeDocumentTemplate = 23 (1) (1) (2) |
|
| Requirements: | |
| Windows version: | any |
| Network: | any |
| Client software: | MS Word |
| Script Engine: | any |
| Summarized: | Works in any Windows version, as long as MS Word is installed. |
| [Back to the top of this page] | |
| SaveAs Use MS Word to convert Word documents to XPS (XML PaperSpecification) |
|
| VBScript Code: | |
|
Option Explicit Doc2XPS "C:\Documents and Settings\MyUserID\My Documents\resume.doc" Sub Doc2XPS( myFile ) ' This subroutine opens a Word document, then saves it as XPS, and closes Word. ' If the XPS file exists, it is overwritten. ' If Word was already active, the subroutine will leave the other document(s) ' alone and close only its "own" document. ' ' Requirements: ' This script requires the "Microsoft Save as PDF or XPS Add-in for 2007 ' Microsoft Office programs", available at: ' http://www.microsoft.com/downloads/details.aspx? ' familyid=4D951911-3E7E-4AE6-B059-A2E79ED87041&displaylang=en ' ' Written by Rob van der Woude ' http://www.robvanderwoude.com ' Standard housekeeping Dim objDoc, objFile, objFSO, objWord, strFile, strXPS Const wdFormatDocument = 0 Const wdFormatDocument97 = 0 Const wdFormatDocumentDefault = 16 Const wdFormatDOSText = 4 Const wdFormatDOSTextLineBreaks = 5 Const wdFormatEncodedText = 7 Const wdFormatFilteredHTML = 10 Const wdFormatFlatXML = 19 Const wdFormatFlatXMLMacroEnabled = 20 Const wdFormatFlatXMLTemplate = 21 Const wdFormatFlatXMLTemplateMacroEnabled = 22 Const wdFormatHTML = 8 Const wdFormatPDF = 17 Const wdFormatRTF = 6 Const wdFormatTemplate = 1 Const wdFormatTemplate97 = 1 Const wdFormatText = 2 Const wdFormatTextLineBreaks = 3 Const wdFormatUnicodeText = 7 Const wdFormatWebArchive = 9 Const wdFormatXML = 11 Const wdFormatXMLDocument = 12 Const wdFormatXMLDocumentMacroEnabled = 13 Const wdFormatXMLTemplate = 14 Const wdFormatXMLTemplateMacroEnabled = 15 Const wdFormatXPS = 18 Const wdFormatOfficeDocumentTemplate = 23 (1) (1) (2) |
|
| Requirements: | |
| Windows version: | any |
| Network: | any |
| Client software: | MS Word 2007 and the Microsoft Save as PDF or XPS Add-in for 2007 Microsoft Office programs |
| Script Engine: | any |
| Summarized: | Works in any Windows version, as long as MS Word 2007 and the Microsoft Save as PDF or XPS Add-in for 2007 Microsoft Office programs are installed. |
| [Back to the top of this page] | |
This demo script can be
downloaded here.
The downloadable version als contains other file filter constants.
| Notes | 1: | Constants found with "brute force" approach by Scott Ness |
| 2: | Requires Microsoft Office Word Add-in For MediaWiki |
| page last uploaded: 12 December 2011, 08:48 |