Error in converting docx file to pdf

My docx file of 91MB fails to convert to pdf format when using the adobe PDFprogram.  This also happened before I changed from a doc to the docx.

This forum is about the Cloud as a delivery process, not about using individual programs
If you start at the Forums Index http://forums.adobe.com/index.jspa
You will be able to select a forum for the specific Adobe product(s) you use
Click the "down arrow" symbol on the right (where it says ALL FORUMS) to open the drop down list and scroll

Similar Messages

  • Creating macro converting docx files into pdf

    Hello,
    I'm trying to create a macro that automatically find all .docx and .xlsx files into selected folder and convert them into PDFs files. I already make something but it converts too much (for example gifs files). Can you help me in that?
    Thanks in advance for your help.
    Robert

    Run this macro from Word:
    Sub ConvertWord2PDF()
    Dim strFolder As String
    Dim strFile As String
    Dim doc As Document
    Dim lngPos As Long
    Dim strPDFName As String
    With Application.FileDialog(4)
    If .Show Then
    strFolder = .SelectedItems(1)
    Else
    MsgBox "You didn't specify a folder!", vbExclamation
    Exit Sub
    End If
    End With
    If Right(strFolder, 1) <> "\" Then
    strFolder = strFolder & "\"
    End If
    Application.ScreenUpdating = False
    strFile = Dir(strFolder & "*.doc*")
    Do While strFile <> ""
    Set doc = Documents.Open(FileName:=strFolder & strFile, _
    AddToRecentFiles:=False)
    lngPos = InStrRev(strFile, ".")
    strPDFName = Left(strFile, lngPos) & "pdf"
    doc.ExportAsFixedFormat OutputFileName:=strFolder & strPDFName, _
    ExportFormat:=wdExportFormatPDF
    doc.Close SaveChanges:=True
    strFile = Dir
    Loop
    Application.ScreenUpdating = True
    End Sub
    and this one from Excel:
    Sub ConvertExcel2PDF()
    Dim strFolder As String
    Dim strFile As String
    Dim wbk As Workbook
    Dim lngPos As Long
    Dim strPDFName As String
    With Application.FileDialog(4)
    If .Show Then
    strFolder = .SelectedItems(1)
    Else
    MsgBox "You didn't specify a folder!", vbExclamation
    Exit Sub
    End If
    End With
    If Right(strFolder, 1) <> "\" Then
    strFolder = strFolder & "\"
    End If
    Application.ScreenUpdating = False
    strFile = Dir(strFolder & "*.xls*")
    Do While strFile <> ""
    Set wbk = Workbooks.Open(Filename:=strFolder & strFile)
    lngPos = InStrRev(strFile, ".")
    strPDFName = Left(strFile, lngPos) & "pdf"
    wbk.ExportAsFixedFormat Type:=xlTypePDF, Filename:=strFolder & strPDFName
    wbk.Close SaveChanges:=True
    strFile = Dir
    Loop
    Application.ScreenUpdating = True
    End Sub
    Regards, Hans Vogelaar (http://www.eileenslounge.com)

  • Error: EXOpenExport() while converting xlsb file to PDF

    I am getting this error while converting .XLSB file to PDF using IBR :Step PDFExport forced conversion failure by conversion engine because of error: EXOpenExport() failed: no filter available for this file type (0x0004). Can anyone tell me how to resolve this issue.
    Thanks in advance.

    Thank you for all your intrest.
    The error message I get is... "an unexpected error occured. PDFMaker was unable to process the request".
    When I then try to convert again, the system opens the ppt, but then does not do anything, and the error message does not show, for all presentations I try to convert.
    I have also tried using the ribbon, but the button does not do anything once I have clicked.
    I can print to PDF, but this provides an output which is not suitable, because it shows as if it each slide was printed on to paper and then put in PDF.
    I have also uninstalled and reinstalled Acrobat to make sure nothing was corrupt.

  • In converting a .docx file to .pdf the the Word functionality of linking screen tips to hyperlinks is lost. Why?  How can screen tips be saved in pdf if at all?

    In converting a .docx file to .pdf the the Word functionality of linking screen tips to hyperlinks is lost. Why?  How can screen tips be saved in pdf if at all?

    Thanks for replying. I am converting from MS Office Word document to Adobe Acrobat Document and opening with Reader XI - sorry my mistake.
    I now notice another problem. On trying to open a specific hyperlink in the pdf version I get the message  'Acrobat does not allow connection to: www.biblegateway.com'.  Why would there be a restriction? 

  • Adobe Acrobat XI pro version, Windows 7, running on iMac parallels, converting pdf to a pdf with reduced size is not possible, error: error in converting the file! What to do? Its a bit annoying not to be able to store pdf files in reduced size, any idea?

    Adobe Acrobat XI pro version, Windows 7, running on iMac parallels, converting pdf to a pdf with reduced size is not possible, error: error in converting the file! What to do? Its a bit annoying not to be able to store pdf files in reduced size, any idea?? Thanks, Jörg

    Hi Jorg ,
    Are you trying to reduce the file size with the "Reduced size PDF" in the save as other option.
    Give it a try if you haven't done it prior.
    Open that PDF>File>Save as Other>Reduced size PDF.
    If possible ,please share the snapshot of the error message with us so that we can have a look in order to assist you further.
    Regards
    Sukrit Dhingra

  • I purchased the Adobe PDF Pack but it won't allow me to convert any files to pdf or combine multiple files to into 1 pdf form. It keeps saying "Error occurred while trying to access the file". WHY

    I purchased the Adobe PDF Pack for $7.50/month (or $89.99/yr) but it won't allow me to convert any files to pdf or combine multiple files into 1 pdf form. It keeps saying "An error occurred while trying to access the service". WHY is this happening & How can I fix it?

    Hi hpmg,
    It seems you are trying to access the service via Adobe Reader. Make sure you are signed in with your Adobe ID. Is Reader updated to the latest patch v 11.0.09?
    It might be possible that a firewall or antivirus might be breaking the connectivity from Reader to the server.
    Try accessing the service from the browser: https://cloud.acrobat.com/exportpdf  and check if that works for you.
    Regards,
    Rave

  • How to batch convert Word files to pdf

    How do I batch convert Word files to pdf using Automator

    Here is a drag/drop AppleScript solution that uses the command-line LibreOffice capability to convert MS Word (.doc, .docx) files into PDF. Drag/Drop a single file, or a folder of Word documents, and it will write the respective PDF back to the original file location. When it is done, an OS X Notification will slide out onto the Desktop and provide the count of processed files.
    Save this AppleScript as a Desktop application that remains open after running. If you ignore the latter, the notification will not show when it is done. Tested on Mavericks 10.9.5.
    property name_extension : {"doc", "docx"}
    global fileCnt
    on open of finderObjects
        set fileCnt to 0
        repeat with i in (finderObjects)
        if folder of (info for i) is true then
            tell application "Finder" to set temp to (entire contents of i)
            repeat with j in (temp)
                process_files(j)
            end repeat
        else
              process_files(i)
        end if
        end repeat
        display notification "Processed Files: " & fileCnt with title "Word2PDF" subtitle "Processing Complete"
    end open
    on process_files(fname)
         set cmd to "/Applications/LibreOffice.app/Contents/MacOS/soffice "
         set cmdArgs to "--headless --convert-to pdf:writer_pdf_Export --outdir "
         tell application "Finder"
              set nameExt to name extension of fname
              set outDir to do shell script "dirname " & POSIX path of (fname as alias)
              if name extension of fname is in name_extension then
                   try
                        do shell script cmd & cmdArgs & outDir & space & POSIX path of (fname as alias)
                        set fileCnt to fileCnt + 1
                   on error errorMessage number errorNumber
                        display alert "Processing Error: " message "[ " & errorNumber & " ] " & errorMessage
                        error number -128
                   end try
              end if
         end tell
         return
    end process_files

  • Acrobat XI Pro successfully installed, but it failed in converting word files into PDF, why?

    I just installed Adobe XI Pro through the download assistant, it looks the installation went well, but when I tried to convert word files into PDF (tried many times), it failed. Anyone has the same problems, any solutions?

    Please reply with more information - what your operating system is, do you have Office installed, and what exactly is happening. Is there an error message, does the application crash, and from where are you starting the conversion (using Word and PDFMaker, using Acrobat's Create button, or batch processing).

  • About converting a file into PDF

    why an error always occur when converting a file into pdf ?

    oceanblue1968 wrote:
    why an error always occur when converting a file into pdf ?
    Why is, when I just missed my train, the next train always late? (sigh)

  • I can't convert my files to pdf

    I have not been able to convert my files to pdf documents since last Friday.  Is there a problem with my account or is adobe having an issue?

    Hi Sue Purcell,
    I am not aware of any system outages. Are you receiving an error message when you try to convert? If so, what is that error? Please provide specific details about the problem you're experiencing, and we will try to get it sorted out for you.
    Best,
    Sara

  • Unable to convert text file to PDF

    Hi,
    Using Adobe Pro 9 Distiller on Windows 2008 64bit server. So far using Distiller to convert .eps files to .pdf with Standard job options file. I need to convert a .txt file to .pdf and am not able to convert using any of the OOTB job options settings that came with Distiller product installation.
    Below is the Distiller output when I tried with Standard job options settings
    %%[ Error: undefined; OffendingCommand: MBLDxxxx-03.rpt ]%%
    %%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
    %%[ Warning: PostScript error. No PDF file produced. ] %%
    Can anyone please provide me settings or job options file settings to convert reports in text format to PDF? Thanks in advance.

    Thanks for the quick response. I was able to generate the PDF using the Adobe PDF writer by opening the text file. Not an issue on 64 bit platform. The .NET application using Distiller to convert eps to PDF via Distiller and moves it over to a watch folder. Another application picks it up and bursts the large PDF to individual PDFs. I need to automatically convert txt to PDF and submit it for burst. Looking for ways to leverage Distiller to automatically convert the txt to PDF. Is it possible? Thanks.

  • Convert txt file to pdf using Acrobat Distiller

    Hi,
    We purchase years ago Distiller 8.1.0.
    Now, I try to convert txt file to pdf files, but I always get an error.
    Please Help,
    Hezi

    I have important information: Acrobat is not licensed for use server side, so you must not use it to build that solution, even if it is technically possible.
    Adobe's server side PDF creation product is LiveCycle PDF Generator https://www.adobe.com/sea/products/server/pdfgenerator/
    This comes in three editions. The "PostScript" edition is little more than a server-side version of Distiller, and will not convert TXT. However, the other two editions can convert a wide variety of formats.

  • Error while converting class file to exp and jca file

    error while converting *.class file to *.exp and *.jca file
    =====================================================================================================================
    linux-y60u:/home/admin/java_card_kit-2_2_1/samples/src # converter -exportpath "/home/admin/java_card_kit-2_2_1/lib/" com/sun/javacard/samples/HelloWorld 0x00:0x01:0x02:0x03:0x04:0x05:0x06:0x07:0x0b 1.0 -v -applet 0x00:0x01:0x02:0x03:0x04:0x05:0x06:0x07:0x0b:0x01 Identity
    Java Card 2.2.1 Class File Converter, Version 1.3
    Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms.
    parsing /home/admin/java_card_kit-2_2_1/samples/src/com/sun/javacard/samples/HelloWorld/HelloWorld.class
    parsing /home/admin/java_card_kit-2_2_1/samples/src/com/sun/javacard/samples/HelloWorld/Identity.class
    error: com.sun.javacard.samples.HelloWorld.HelloWorld: unsupported class file format of version 50.0.
    error: com.sun.javacard.samples.HelloWorld.Identity: unsupported class file format of version 50.0.
    conversion completed with 2 errors and 0 warnings.
    =====================================================================================================================

    i compile a file javacard use this command:
    ===
    javac -source 1.3 -target 1.1 -g -classpath ./classes:../lib/api.jar:../lib/installer.jar src/com/sun/javacard/samples/Identity/Identity.java
    ===
    and try to convert this class use this command
    ===
    /home/xnuxerx/admin/java_card_kit-2_2_1/bin/converter -exportpath "/home/xnuxerx/admin/java_card_kit-2_2_1/lib/" com/sun/javacard/samples/Identity 0x00:0x01:0x02:0x03:0x04:0x05:0x06:0x07:0x0b 1.0 -v -applet 0x00:0x01:0x02:0x03:0x04:0x05:0x06:0x07:0x0b:0x01 Identity
    ===
    result convert:
    ===
    Java Card 2.2.1 Class File Converter, Version 1.3
    Copyright 2003 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms.
    parsing /home/xnuxerx/admin/java_card_kit-2_2_1/samples/classes/com/sun/javacard/samples/Identity/Identity.class
    converting com.sun.javacard.samples.Identity.Identity
    error: export file framework.exp of package javacard.framework not found.
    conversion completed with 1 errors and 0 warnings.
    ===
    why ??
    please your comment for this problem.
    thank 4 all.

  • ITunes 12 'error occurred converting the file the disk is not available'

    Hi,
    looking for some advice on an issue with importing disks into iTunes 12.0.01.26 on Windows 7
    I import a CD and the first song generally imports successfully
    However I noticed the second song (or sometimes the fourth) fails with the following :
    'error occurred converting the file the disk is not available'
    I can manually untick the first songs that have imported successfully and re-import the remainder.
    Generally another song will import and the error will reoccur. I can continue this laborious process until the CD is fully imported
    I can rip CD's using Windows Media Player without any issue so it doesn't look like an optical drive issue
    I have checked under Preferences - Advanced and the iTunes media folder is apparent. I'm using an external drive for my iTunes Library.
    Attempts to Resolve
    I tested by setting up an iTunes library under my C:\ and the issue reoccurs.
    I've tried repairing the installation but it made no difference.
    I tried removing the iTunesPreferences.plist file - no difference
    I have switched off (and back on) the automatic prompt to import CD's
    Turned off and on error checking when importing CD's
    I have noticed the prompt to import the CD can pop up at least twice, often again when an import is underway
    I would be grateful for any suggestions on remedial steps I could take!
    Many Thanks
    Paul

    Hey Paul_Ramone,
    Sorry to hear you are having these issues with iTunes on your Windows machine. If you continue having issues importing tracks from CDs into iTunes (after the first track), you may find the information and troubleshooting steps outlined in the following articles helpful:
    iTunes 12 for Windows: Import songs from CDs (troubleshooting steps toward the bottom)
    iTunes for Windows: iTunes Diagnostics, CD/DVD Drive Tests - Apple Support
    Cheers,
    - Brenden

  • When I converted a file from PDF to WORD.DOC it opened as Read Only and I'm unable to alter any of the text.  How can I solve this problem?

    When I tried to convert a file from PDF to WORD.DOC it opened as Read Only and I'm unable to alter any of the text.  How do I solve this problem?  I don't know how to change it from Read Only.

    Dear Sara
    Thank you very much for sending the converted file.  Yes, I am able to edit it - that will be very useful to me and I appreciate your help.
    Referring to your previous message when you said you'd converted via Acrobat and not Acrobat.com, I'm converting via Acrobat.com because that's the only option that is shown (how do I convert via Acrobat? - perhaps that would be more successful).  I'm using the Export PDF website, and the OCR is enabled to "Recognize text in English UK".  However, I've just tried converting a different LPA pdf form, this time for Health & Welfare https://www.gov.uk/government/uploads/system/uploads/attachment_data/file/245571/LPA114_He alth_welfare_LPA.pdf and again I have the same problem as before.  I've altered it from "Read only" and thought I'd then be able to enter text, but "Drawing Tools" is shown in the pane and I'm unable to enter anything onto the form - everything appears to be in images.  Also, the lettering on the heading of' page 1 has become jumbled, with the word "Public" overlaying the word "Guardian."  Any suggestions as to what it is I'm doing wrong would be welcome - I don't like to be beaten!
    Regards,
    Judith.

Maybe you are looking for

  • Routing issue between Cisco Nexus and Cisco 4510 R+E Chassis

    We have configured Cisco Nexus 7K9 as core and Cisco 4510 R+E as access switches for Server connectivity. We are experiencing problem in terms of ARP learning and Ping issues between Cisco Nexus and end hosts.

  • Problem in execution of OIM 9.1 API

    Hi, In our project, we have developed a custom application using OIM9.1 API where we are using calling tcRequestOperationIntf.getRequestObject(ReqKey) at multiple places. and also tcRequestOperationIntf.seRequestResponse(a,b,c) methods. same code is

  • Unexpected RMI problem

    Hi, I have unexpected problem with RMI. I wrote an application with several server modules and client modules. Two server modules use RMI to expose their methods for client and reciprocal exchange. These servers are in the same directory and use the

  • Blocking payment in vendor master,

    Dear  All, Please explain me how to block vendor payment  in vendor master, thanks

  • Best tool for painting in photoshop

    Hello All, I am trying to paint in photoshop using a mouse and I realized that I can not make the mouse do what I wanted it to do. For example the mouse makes my brush strokes too jerky and I don't get smooth lines and the textures don't come out rig