Article ID: 185052 - Last Review: January 22, 2007 - Revision: 2.2 WD97: How to Use Other Converters with the FileFormat PropertyThis article was previously published under Q185052 On This PageSUMMARY
The SaveAs method of the Document object in Microsoft Visual Basic for
Applications has an optional parameter called FileFormat that you can use
to specify the save format for the document.
This article describes how to use the FileFormat property of the SaveAs method to specify a converter that is not supported with one of the supplied constants (values). MORE INFORMATIONMicrosoft provides programming examples for illustration only, without warranty either
expressed or implied, including, but not limited to, the implied warranties of
merchantability and/or fitness for a particular purpose. This article assumes
that you are familiar with the programming language being demonstrated and the
tools used to create and debug procedures. Microsoft support professionals can
help explain the functionality of a particular procedure, but they will not
modify these examples to provide added functionality or construct procedures to
meet your specific needs. If you have limited programming experience, you may
want to contact a Microsoft Certified Partner or the Microsoft fee-based
consulting line at (800) 936-5200. For more information about Microsoft Certified
Partners, please visit the following Microsoft Web site:
https://partner.microsoft.com/global/30000104
(https://partner.microsoft.com/global/30000104)
For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:
http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMS
(http://support.microsoft.com/default.aspx?scid=fh;en-us;cntactms)
FileFormat accepts the following built-in conversion constants:wdFormatDocument Save as a Word document.
wdFormatText
Text Only: Saves text without its formatting. Converts all section
breaks, page breaks, and newline characters to paragraph marks. Uses
the ANSI character set. Select this format only if the destination
program cannot read any of the other available file formats.
wdFormatDOSText
MS-DOS Text: Converts files the same way as Text only format
(wdFormatText). Uses the extended ASCII character set, which is the
standard for MS-DOS-based programs. Use this format to share documents
between Word and non-Windows-based programs.
wdFormatTextLineBreaks
Text only with line breaks: Saves text without formatting. Converts all
line breaks, section breaks, and page breaks to paragraph marks. Use
this format when you want to maintain line breaks. For example, when
transferring documents to an electronic mail system.
wdFormatDOSTextLineBreaks
MS-DOS text only with line breaks: Saves text without formatting.
Converts all line breaks, section breaks, and page breaks to paragraph
marks. Use this format when you want to maintain line breaks, for
example, when transferring documents to an electronic mail system.
wdFormatRTF
Rich Text Format (RTF): Saves all formatting. Converts formatting to
instructions that other programs, including compatible Microsoft
programs, can read and interpret.
wdFormatTemplate
Save as a Word template.
wdFormatUnicodeText
Saves as a Unicode text file. Converts text between common character
encoding standards, inclucing Unicode 2.0, Mac OS, Windows, EUC and
ISO-8859 series.
Other File TypesIf you record a macro that saves a file as a type not supported by one of the constants described earlier, the FileFormat property will contain a number. The following sample macro was recorded using HTML as the Save As Type:To retrieve the correct FileFormat number for a conversion type for any computer, use the FileConverters collection. The following sample Visual Basic for Applications macro saves a document in HTML format on any computer: NOTE: In the following example, replace "HTML" with the class name you want to Save As. For a list of class names, see the "Obtaining Class Names" section later in this article. NOTE: If the Assistant is hidden, click the Office Assistant button on the Standard toolbar. If the Assistant is not able to answer your query, please see the following article in the Microsoft Knowledge Base: 176476
(http://support.microsoft.com/kb/176476/EN-US/
)
Office Assistant Not Answering Visual Basic Questions
Obtaining Class NamesThe following list contains converters and class names installed by Word that you can use for saving a document:Converter ClassName ---------------------------------------------------- HTML Document HTML MS-DOS Text with Layout MS-DOS Text with Layout Text with Layout Text with Layout Word 2.x for Windows MSWordWin2 Converter: Word 4.0 for Macintosh MSWordMac4 Word 5.0 for Macintosh MSWordMac5 Word 5.1 for Macintosh MSWordMac51 WordPerfect 5.0 WrdPrfctDOS50 WordPerfect 5.1 for DOS WrdPrfctDOS51 WordPerfect 5.x for Windows WrdPrfctWin WordPerfect 5.1 or 5.2 Secondary File WrdPrfctDat WordPerfect 5.0 Secondary File WrdPrfctDat50 Works 3.0 for Windows MSWorksWin3 Works 4.0 for Windows MSWorksWin4 Word 6.0/95 MSWord6Exp Word 97 & 6.0/95 - RTF MSWord6RTFExp The following sample macro loops through all installed converters that you can use for saving, and then inserts the converter name and associated class name into a blank document: REFERENCES
For additional information, please see the following article in the
Microsoft Knowledge Base:
173707
(http://support.microsoft.com/kb/173707/EN-US/
)
How to Run Sample Code from Knowledge Base Articles
For more information about getting help with Visual Basic for Applications,
please see the following article in the Microsoft Knowledge Base:
163435
(http://support.microsoft.com/kb/163435/EN-US/
)
Programming Resources for Visual Basic for Applications
| Article Translations
|


Back to the top
