Procedure Name | Type | Description |
(Declarations) | Declarations | Declarations and private variables for the modWordConversion module. |
WordFileConversion | Procedure | Convert one Word document from one format type to another. |
WordFolderConversion | Procedure | Convert all documents in a given directory from one format type to another. For instance, converting all the *.DOC files to *.DOCX format. |
GetFileExtension | Procedure | Get file extension for the specified type. |
FindFiles | Procedure | Locate all the files that match the specified parameters for the folder and subfolders. |
GetFileNameNoExt | Procedure | Given a file with complete path, return just the file name without the extension. |
' Example of modWordConversion ' ' To use this example, create a new module and paste this code into it. ' Then run the procedure by putting the cursor in the procedure and pressing: ' F5 to run it, or ' F8 to step through it line-by-line (see the Debug menu for more options) Private Sub Example_modWordConversion() ' Comments: Examples of using the modWordConversion module to convert Microsoft Word documents from one format to another in VBA and VB6. ' This example assumes that the sample files are located in the folder defined by the following constant. Const cstrSamplePath As String = "C:\Total Visual SourceBook 2013\Samples\" Const cstrSourceDir As String = cstrSamplePath Const cstrDestDir As String = cstrSamplePath & "DestDir" Dim intFiles As Integer ' Convert a Word document to RTF WordFileConversion cstrSamplePath & "convert.docx", cstrSamplePath & "convert.rtf", wdFormatRTF ' Convert all Word *.DOC files in the source folder to HTML files in the DestDir folder intFiles = WordFolderConversion(cstrSourceDir, cstrDestDir, wdFormatDocument, wdFormatHTML) ' Covert all Word *.DOC files in the source folder to *.DOCX files in the DestDir folder intFiles = intFiles + WordFolderConversion(cstrSourceDir, cstrDestDir, wdFormatDocument, wdFormatDocumentDefault) MsgBox intFiles & " converted documents created" End Sub
The source code in Total Visual Sourcebook includes modules and classes for Microsoft Access, Visual Basic 6 (VB6), and Visual Basic for Applications (VBA) developers. Easily add this professionally written, tested, and documented royalty-free code into your applications to simplify your application development efforts.
Total Visual SourceBook is written for the needs of a developer using a source code library covering the many challenges you face. Countless developers over the years have told us they learned some or much of their development skills and tricks from our code. You can too!
Supports Access/Office 2016, 2013, 2010 and 2007, and Visual Basic 6.0!
"The code is exactly how I would like to write code and the algorithms used are very efficient and well-documented."
Van T. Dinh, Microsoft MVP