Posted by

How To Convert Microsoft Word 2007 Into Pdf

How To Convert Microsoft Word 2007 Into Pdf' title='How To Convert Microsoft Word 2007 Into Pdf' />Microsoft Save as PDF or XPS from Official Microsoft Download Center. To install this download Download the file by clicking the Download button above and saving the file to your hard disk. Double click the Save. As. PDFand. XPS. exe program file on your hard disk to start the Setup program. Follow the instructions on the screen to complete the installation. Instructions for use After you install this download open the document you want to publish and then, depending on the program you are using, select Save or Publish to PDF or XPS from the Office or File menu. Yanmar Sd20 Saildrive Manual. I have found several opensourcefreeware programs that allow you to convert. Download Microsoft Office Compatibility Pack for Word, Excel, and PowerPoint File Formats from Official Microsoft Download Center. How to Convert a Microsoft Publisher File into a PDF File. Microsoft Publisher. Publisher. If you dont have Publisher, you can. Microsoft Word is a word processing application part of the Microsoft Office suite. By installing novaPDF you can convert your word documents into PDF files. Convert-pdf-To-Word-Document.jpg' alt='How To Convert Microsoft Word 2007 Into Pdf' title='How To Convert Microsoft Word 2007 Into Pdf' />In this short Video Tutorial I show you a step by step process on how to convert a Pages document into a Microsoft Word. Many times people say. For more information, search Office Help for Save a file in PDF format or Save a file in XPS format. To remove this download To remove the download file, delete the file Save. As. PDFand. XPS. exe. On the Start menu, point to Settings and then click Control Panel. Double click AddRemove Programs. In the list of currently installed programs, select Microsoft Save as PDF or XPS Add in for 2. Microsoft Office programs and then click Remove or AddRemove. If a dialog box appears, follow the instructions to remove the program. Click Yes or OK to confirm that you want to remove the program. VBScript to Convert Microsoft Office Files Word, Excel, Power. Point to PDF Home. I spend a lot of my time working with Word documents and Excel spreadsheets its in the nature of what I do. I frequently found that I need to create PDF copies of these files to send out to clients and eventually I grew tired of having to open the files one by one and select to save each as a PDF. As a result I created a bit of VBScript to automatically convert files for me in Windows. A shortcut to the script should be placed in your send to folder to allow you to send files directly to the script. For each file it is passed and you can pass different types of files at once the script tries to determine what application to open it with and then opens that file in that application. Once open it saves the file as a PDF in the same folder as the original file and then closes the application. There are a couple of settings that you might wish to amend to suit your own purposes. If the constant SUMMARYDISPLAY is set to TRUE it will display a window that summarises the files that have been converted. If set to FALSE no confirmation is displayed. The variables gstr. File. Types. Word, gstr. File. Types. Excel and gstr. File. Types. Power. Point contain lists of file extensions delimited by pipes. These are for Word, Excel and Power. Point files respectively. You can extend the lists to include other file types from those presented here templates, TXT, RTF, CSV, etc. Theres nothing in it for handling errors, but obviously feel free to extend this script to meet your own needs. There are a number of constants and settings that Ive set out to make it easier for you to tweak or amend. Maybe you want to save the files as XPS files or you want to change the final location of all your output files please customise away. I use this script regularly with Microsoft Office 2. Hopefully its compatible with Office 2. Office why not leave a comment below to let people know if it works or needs a particular amendment to get it to work. Option Explicit. CONFIGURATION START. Display a summary in a message box when the conversions are complete. Const SUMMARYDISPLAY TRUE. Const SUMMARYTITLE Conversion Complete. File extensions for PDFs. Const PDFExtension pdf. Results for Check. File Function. Const CHECKFILEOK 0. Const CHECKFILEFile. Does. Not. Exist 1. Const CHECKFILENot. MSOFile 2. Settings to produce PDFs from the applications. Const EXCELPDF 0. Const EXCELQuality. Standard 0. Const WORDPDF 1. Const POWERPOINTPDF 3. File types returned from Office. File. Type function. Const FILETYPENot. Office 0. Const FILETYPEWord 1. Const FILETYPEExcel 2. Const FILETYPEPower. Point 3. Valid file type lists. Const FILETYPEDELIMITER. Dim gstr. File. Types. Word. gstr. File. Types. WordDOCDOCX. Dim gstr. File. Types. Excel. gstr. File. Types. ExcelXLSXLSX. Dim gstr. File. Types. Power. Point. gstr. File. Types. Power. PointPPTPPTX. CONFIGURATION FINISH. Call the main routine. MAIN ROUTINE START. Dim col. Args, int. Counter, obj. FSO, str. File. Path. Get the command line arguments for the script. Each chould be a file to be processed. Set col. Args Wscript. Arguments. If col. Args. Count 0 Then. For int. Counter 0 to col. Args. Count 1. str. File. Path Wscript. Argumentsint. Counter. Check we have a valid file and process it. Select Case Check. Filestr. File. Path. Case CHECKFILEOK. Select Case Office. File. Typestr. File. Path. Case FILETYPEWord. Save. Word. As. PDF str. File. Path. Case FILETYPEExcel. Save. Excel. As. PDF str. File. Path. Case FILETYPEPower. Point. Save. Power. Point. As. PDF str. File. Path. End Select. Case CHECKFILEFile. Does. Not. Exist. Msg. Box str. File. Path, vb. Critical, File int. Counter does not exist. WScript. Quit. Case CHECKFILENot. MSOFile. Msg. Box str. File. Path, vb. Critical, File int. Counter is not a valid file type. WScript. Quit. If theres not even one argumentfile to process then exit. Msgbox Please pass a file to this script, 4. No File Provided. Display an optional summary message. If SUMMARYDISPLAY then. If col. Args. Count 1 then. Msg. Box CStrcol. Args. Count files converted., vb. Information, SUMMARYTITLE. Msg. Box 1 file converted., vb. Information, SUMMARYTITLE. MAIN ROUTINE FINISH. SUB ROUTINES START. Sub Save. Excel. As. PDFpstr. File. Path. Save Excel file as a PDF. Dim obj. Excel, obj. Workbook. Set obj. Excel Create. ObjectExcel. Application. Open the file. Set obj. Workbook obj. Excel. Workbooks. Openpstr. File. Path. Workbook. Export. As. Fixed. Format EXCELPDF, Path. Of. PDFpstr. File. Path, EXCELQuality. Standard, TRUE, FALSE, FALSE. Close the file and exit the application. Workbook. Close FALSE. Sub Save. Word. As. PDFpstr. File. Path. Save Word file as a PDF. Dim obj. Word, obj. Document. Set obj. Word Create. ObjectWord. Application. Open the file. Set obj. Document obj. Word. Documents. Openpstr. File. Path. obj. Document. Save. As Path. Of. PDFpstr. File. Path, WORDPDF. Close the file and exit the application. Document. Close FALSE. Sub Save. Power. Point. As. PDFpstr. File. Path. Save Power. Point file as a PDF slides only. Dim obj. Power. Point, obj. Slide. Deck. Set obj. Power. Point Create. ObjectPower. Point. Application. Power. Point errors if it isnt visible. Power. Point. Visible TRUE. Open the file. Set obj. Slide. Deck obj. Power. Point. Presentations. Openpstr. File. Path, FALSE. Slide. Deck. Save. As Path. Of. PDFpstr. File. Path, POWERPOINTPDF, True. Close the file and exit the application. Slide. Deck. Close. Power. Point. Quit. SUB ROUTINES FINISH. FUNCTIONS START. Function Check. Filepstr. File. Path. Check file exists and is an office file Excel, Word, Power. Point. Set obj. FSO Create. ObjectScripting. File. System. Object. Check the file exists and is an office file. If Is. Office. Filepstr. File. Path then. If obj. FSO. File. Existspstr. File. Path then. Check. File CHECKFILEOK. Check. File CHECKFILEFile. Does. Not. Exist. Check. File CHECKFILENot. MSOFile. Function Office. File. Typepstr. File. Path. Returns the type of office file, based upon file extension. Office. File. Type FILETYPENot. Office. If Is. Word. Filepstr. File. Path then. Office. File. Type FILETYPEWord. If Is. Excel. Filepstr. File. Path then. Office. File. Type FILETYPEExcel. If Is. Power. Point. Filepstr. File. Path then. Office. File. Type FILETYPEPower. Point. Function Is. Office. Filepstr. File. Path. Returns true if a file is an office file Excel, Word, Power. Point. Is. Office. File Is. Word. Filepstr. File. Path OR Is. Excel. Filepstr. File. Path OR Is. Power. Point. Filepstr. File. Path. Function Is. Word. Filepstr. File. Path. Returns true if a file is a Word file. Is. Word. File Is. In. ListGet. File. Extensionpstr. File. Path, gstr. File. Types. Word. Function Is. Excel. Filepstr. File. Path. Returns true if a file is an Excel file. Is. Excel. File Is. In. ListGet. File. Extensionpstr. File. Path, gstr. File. Types. Excel. Function Is. Power. Point. Filepstr. File. Path. Returns true if a file is a Power. Point file. Is. Power. Point. File Is. In. ListGet. File. Extensionpstr. File. Path, gstr. File. Types. Power. Point. Function Is. In. Listpstr. Search.