
- Doc to docx converter for mac how to#
- Doc to docx converter for mac pdf#
- Doc to docx converter for mac full#
- Doc to docx converter for mac pro#
You can then submit these JPEG files to your vendor/contact. You will now have multiple JPEG images corresponding to the number of pages in your original Word document ( In this example there were 7 pages in the Word file, thus there are 7 generated JPEG image files). The last step is to specify the location on your computer where you want to save the JPEG files and then click the Save button: Grayscale & Color: JPEG (Quality : Maximum).To produce high resolution print-quality JPEG images from each page of your document select the options shown below in the pulldown menus and then click the OK button: Make sure JPEG is selected and then click the Settings button.
Doc to docx converter for mac pro#
Once you have created the PDF, open it within Adobe Acrobat Pro DC ( the free Reader version will not work).
Doc to docx converter for mac pdf#
Once your Word document is open, Click the File menu and pull down to select the Save As menu item.Īt the bottom of the Save As window click the pulldown button and select the PDF menu item under Export Formats. This is useful if you are required to submit your multi-page Word document to a vendor as .JPEG images.

Doc to docx converter for mac how to#
This article will explain how to convert a Microsoft Word document to high resolution print-quality. The free Adobe Acrobat Reader software does not contain all functionality. NOTE: You must have the Adobe Acrobat Pro (DC) software. Vanderbilt Nurse-Midwifery Faculty Practice.Center for Research Development and Scholarship (CRDS).VUSN Faculty/Staff Intranet (Sharepoint).You may be able to locate other similar converters by doing a web search for "doc docx converter" (without the quote marks). The following page on Graham Mayor's site features a free add-in that will, among other things, do the document conversion: If you prefer to not use your own macro, there are third-party solutions you could use. Obviously, these should not be converted, so the If / Then structure is included to weed them out. This means that it also returns files ending in. This is done because of the rather aggravating behavior of the Dir function on some systems where searching for the pattern "*.doc" will return as a match any filename that contains. In other words, if the original file has macros in it, those macros will be stripped off in the conversion process.įinally, notice that the heart of the macro is contained within an If / Then structure that checks to make sure the rightmost 4 characters of the filename are actually ".doc". Further, you should understand that this converts all the DOC files to DOCX files. For instance, if you ran this macro twice in a row, you would get errors because the files being saved in the target directory already exist. The reason is because it does no error checking on its work. Note that I mentioned this is a simple approach. The macro then steps through all the DOC files it finds in the source directory, opens them, and saves them as DOCX files in the target directory.
Doc to docx converter for mac full#
Then, in the sTargetPath variable, specify the full path (with trailing backslash) of the directory in which the converted documents should be stored. First, specify in the sSourcePath variable the full path (followed by a backslash) to the directory that contains the files you want to convert. In order to use the macro, you'll need to make two changes.

SaveAs FileName:=sTargetPath & sNewDocName, _ SNewDocName = Replace(sDocName, ".doc", ".docx") Set docCurDoc = Documents.Open(FileName:=sSourcePath & sDocName) 'Only work on files where right-most characters are ".doc" ' Repeat as long as there are source files STargetPath = "c:\Users\Administrator\Desktop\Converted\" SSourcePath = "c:\Users\Administrator\Desktop\Testing\" You can, however, create your own macro to do the conversions. Microsoft does not provide this functionality in Word, nor do they provide an add-in to do the conversions. He wonders if there is a quick way to convert them without opening and saving each one individually. Converting a folder with DOC files to DOCX is also. Another method is to press the keyboard shortcut Ctrl+V (+V on Mac) to paste a DOC file you have copied to clipboard. You can also click to select DOC files using your operating system's file picker. Christian has a folder full of DOC files that he needs to convert to DOCX files. At the top of this page, drag and drop your DOCs.
