PDF Printer and Export to Word

I was trying to export this PDF to word, and Vista would always claim that the Acrobat stopped working when it is checking the tags. Then later I was just trying to see if it would work if I start with a new PDF, so I was trying to print it. Now I get this:
%%[ ProductName: Distiller ]%%
%%[ Error: invalidfont; OffendingCommand: definefont; ErrorInfo: .notdef --nostringval-- ]%%
Stack:
/Font
-dict-
/PVRAAA+DY98+ZBHAlq-98
false
%%[ Flushing: rest of job (to end-of-file) will be ignored ]%%
%%[ Warning: PostScript error. No PDF file produced. ] %%

Thanks. Now that the PDF is smaller, I can convert it into a Word document.
HOWEVER, now all the numbers are messed up. For example, when I try to select and copy the number 93.57 I will get (%&,*
And its like that for all numbers in the document......
http://www.fileden.com/files/881/pdf1.pdf

Similar Messages

  • How can you add your own print and export buttons to the CR viewer toolbar?

    I posted a previous question that was asking how to get around the Information Bar in IE7 when you export and print.  Unfortunately the CR viewer file download code gets blocked by IE7 because the buttons don't directly download the file.  However, I have been able to get a regular button that calls the following code and streams the file to the client and IE7 does not block it. 
    Sub PrintPDF(sender As Object, e As System.EventArgs)
         Dim crReportDocument as ReportDocument
         Dim crExportOptions as ExportOptions
         Dim crDiskFileDestinationOptions as DiskFileDestinationOptions
         Dim Fname as string
         CrReportDocument = New ReportDocument()
         CrReportDocument.Load(Server.MapPath("estactionlist.rpt"))
         Fname = Server.MapPath("./") & Session.SessionID.ToString & ".pdf"
         CrDiskFileDestinationOptions = New DiskFileDestinationOptions()
         CrDiskFileDestinationOptions.DiskFileName = FName
         CrExportOptions = crReportDocument.ExportOptions
         With crExportOptions
              .DestinationOptions = CrDiskFileDestinationOptions
              .ExportDestinationType = ExportDestinationType.DiskFile
              .ExportFormatType = ExportFormatType.PortableDocFormat
         End With
         CrReportDocument.Export()
         Response.ClearContent()
         Response.ClearHeaders()
                    Response.AddHeader("content-disposition", "attachment;filename=test.pdf")
                    Response.ContentType = "application/pdf"
                    Response.Charset = ""
                    Response.WriteFile(Fname)
                    Response.Flush()
         Response.Close()
         System.IO.File.Delete(Fname)
    End Sub
    So here are my questions?
    1. Is it possible to add a custom print control/icon to the CR viewer toolbar?
    2. If one is not possible, then is it possible to override the CR viewer print and export buttons with your own subroutines like the one above?
    I just want my page to look nice and hate to have print and export buttons outside of my CR viewer. 
    Thanks,
    Kevin

    It might be possible to replace the buttons in a windows app since you can retrieve the toolbar as a toolbar object in the winform viewer  ( ToolStrip toolBar = (ToolStrip) crystalReportViewer1.Controls[3]; )  however with a web app, it's a lot more difficult.
    The problem is that that you need to parse the Request string to try and figure out if the print / export button was clicked.  The code below makes the print button disappear if you click it, so you should be able to modify it to call your custom printing / exporting code instead  (You have to do this check in a postback)
            Dim I As Integer = 0
            If Request.Form.AllKeys.Length > 0 Then
                For I = 0 To Request.Form.AllKeys.Length - 1
                    Response.Write(Request.Form.Keys(I).ToString & "<BR>")
                    If Request.Form.Keys(I).ToString = "CrystalReportViewer2:_ctl2:_ctl2.x" Then
                        CrystalReportViewer2.HasPrintButton = False
                    End If
                Next
           End If
    Shawn

  • Office PDF Print and office PDF creator(adobe plugin) create different line thickness result

    Hi together,
    Office PDF Print and office abobe PDF creator(adobe plugin) create different result. It seems that Adobe PDf creater improves line thickness to 1pt instead of 0,3pt. Is there a setting to change to original 0,3 because this 0,3 are standard line thickness for our documents. with adobe V9 the line was 0,3pt. (we need thin, mid and thick lines)
    After 2 day's google searching this is the last change for hope :-)
    Software Versions
    Windows 7
    MS Office 2007 (12.0.6668.5000) SP3 MSO (12.0.6662.5000)
    Adobe Acrobat X (10.1.7)
    Left: MSO Adobe Plugin / MId: MS Word / Rigth: PDF printed over "print" AdobePDF printer

    Hi Bill,
    Thanks a lot for the fast reply, i have tested it with 300dpi but I didn't get a different result. The bad thing is that not all lines getting thicker. if there is no arrow or ball at the end of the line the line thickness will not change (see Pic). I think this is a Acrobat error, i don't think that this will improve the pdf quality if the progam changes only some lanes and not all to 1pt.
    I Think we must downgrade to version 9.

  • Printing to Adobe PDF printer and getting the same document, possible??

    Hello:
    I need to split a page A4 into 2 pages, it's possible using print, then tile large pages, the problem is that my original document is black and white, but the generated one has a shades of gray visible when zooming to 800% (and the size is much bigger), so my question is:
    is it possible to print a document to Adobe PDF printer and getting exactly the same document?? same size, same black and white
    I'm using acrobat6

    I suspected as much.  I was hopeful it was something like a setting that needed to be changed or a reg hack that needed a bit changed from 0 to 1 to make the printing work as expected.  I only installed the local printer to see if the RDP session
    tunnel was in fact causing the print size to balloon so I will continue to instruct users to use that instead of the local redirected printer.  I am disappointed but not surprised.
    Edit:
    Additionally I have tested the functionality of setting the GPO settings for Easy Print to use the redirected printer's drivers instead of the ones used by easy print, by setting “Computer
    Configuration -> Administrative templates -Windows Components -> Remote Desktop Services > Remote Desktop Session Host -> Printer Redirection”.
    to “Disabled” but
    with no luck.  In fact the printer received the proper Adobe PDF driver, but the job went out into print spool hell and was lost to the ether.  I have concluded that this approach will not bear any fruit.

  • How to hide the Print and Export button in analytics report or tasks pane

    Hi Experts,
    In BIEE 11g,
    How to hide the Print and Export button in analytics report or tasks pane ?
    For example:
    In console,I have created one userA which is belong to BIConsumer GROUP , when I make use of the highest user 'weblogic' to create one simple report, then the userA will login the analytivs to view this report (not dashboard), it will show the print and export as below.So customers do not want to give him the privilege for printing and exporting.
    In addtion, go to catalog->tasks(left corner), it will also show the print and export button. So how to hide or not access these button?
    Note: Maybe it can use the policy for consumer role for implementing this requirement, but I do not know how to modify the policy. Are you facing the problem? Thanks.

    Hi,
    1. Create seperate folder for Reports & Dashobard.
    2. For BI_Consumer (userA) set the catalog permission to view Dashboard Folder only and remove permission on the Report Folder (you can give traverse permission but don't give Open permision).
    3. By this user won't be able to open or run any reports in that folder and the only way he can see the reports is through Dashboard and on dashboard the export and print buttone can be removed very easily.
    Mark helpful if it helps.
    Regards,
    Kashi
    Edited by: K N Yadav on 24 May, 2013 1:51 AM

  • Can I create a site in Muse and export to Word Press?

    Can I create a site in Muse and export to Word Press?

    Hi,
    check this discussion
    Re: I want to know Muse can export to Wordpress ?

  • Using PDF Printer and MS SharePoint

    We love the new functionality with Acrobat and Sharepoint, however, we noticed there is a problem when using the Adobe PDF Printer to save to a Sharepoint Library.
    None of the Sharepoint functionality works when you save to a Sharepoint library from the PDF Printer!!!
    We have users that (in an effort to cut down on paper printing costs) screen-print a report from an external application using the Adobe PDF Printer. We would like for them to be able to immediately drop these into a Sharepoint library which has required metadata fields in it. The problem is that, while this functionality works when you already have a PDF open and try to save to this library, the user is never prompted to fill out the required metadata whenever they use the PDF printer.
    Steps:
    1.     User hits the print button and selects the Adobe PDF Printer
    2.     User gets a Save-As dialog box where they select the sharepoint location (via a mapped drive)
    3.     The screen-print then pulls up in Acrobat
    ***The problem is, the document somehow successfully saves to the library but stays checked out. The user can just close the document and is never prompted for the metadata.

    Dear SAP_Wiz
    Thanks
    It is a sapscript out put.
    Converting output to spool and then to PDF is definetly a way.
    However, seens SAP has already provided a PDF printer and which asked for email as parameter, It could be easy.
    Is email ID as parameter is really not there is PRINT PARAMETER. ????
    - SUNIL

  • PDF 'print' and other 'next' and 'finish' commands hidden behind deep icon tray on monitor. Help!

    Pavilion Slimline s5212y desktop, Windows 7
    I can't find info on how to control lower icon tray depth so that I can see and click on various program install, PDF print and other 'print', 'next', 'finish', etc. commands. 

    Hello Veebeep
    If I understand you correctly your PDF viewer is not giving you the options you posted above. Click on View and ensure that both Read Mode and Full Screen Mode are unchecked. This should get your options back if you are experiencing that I am thinking you are. If this does not work if you could elaborate a bit on your issue I will try to assist.
    Thank you for posting on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • How usnig manuplate the Import and export Key word.

    How usnig manuplate the Import and export Key word? and
    how do the clear of those variable?

    HI ,
    For IMPORT Keyword :---
    To retrieve data from the global memory area, use the IMPORT statement.  The most basic form of the IMPORT statement is:
    IMPORT <variable> FROM MEMORY.
    To give the variable a different name in your program from what it is called in the global memory area, use the TO clause.  You must define the local variable name with a DATA statement in your program.  The format is:
    IMPORT <global var> TO <program var> FROM MEMORY.
    As with the EXPORT statement, you can specify multiple variables per statement, and you have the option of specifying which cluster ID you wish to import from.
    After each IMPORT statement, SY-SUBRC is set to indicate whether or not the cluster ID you specified exists (but not whether specific variables were imported specifically).  SY-SUBRC is zero if the cluster exists.
    It is also possible to IMPORT and EXPORT to database tables .
    ABAP memory that is used to store exported data is user and transaction specific, so when passing data between programs in this manner you must make sure that transaction boundaries are not crossed. Otherwise the contents of this memory will get destroyed and will not be available to the importing program.
    For Export Keyword :---
    The EXPORT statement moves data from your program into a global memory area.  The most basic form of the EXPORT statement is:
    EXPORT <variable> TO MEMORY.
    This places the specified variable into a global memory area that another program can later read using the IMPORT statement.
    You may specify multiple fields in the same EXPORT statement.  For example:
    EXPORT KNA1-KUNNR KNA1-BUKRS TO MEMORY.
    You can give variables a different name in the global memory area using the FROM clause.  For example, the following code exports SY-SUBRC and gives it the name RETVAL in the global memory area:
    EXPORT RETVAL FROM SY-SUBRC TO MEMORY.
    You can specify a cluster ID when exporting data to memory.  You can freely choose the name of the cluster ID, which can be up to 32 characters long.  Each cluster ID specifies a particular area in memory.  Each time you EXPORT data to the same cluster ID, all data previously written to that ID is erased.  For example:
    EXPORT SY-SUBRC TO MEMORY ID u2018LJS1u2019.
    Hope u understand
    Thanks
    Shambhu

  • Set location of print and export dialog boxes?

    Is there any way to set the location of the print and export dialog boxes in the viewer?
    To say, have the dialog box show up in the top left corner instead of in the middle of the document?

    There's no easy way to customize that for the viewer.
    Some people make the toolbar invisible and write their own controls.
    Sincerely,
    Ted Ueda

  • File printed to pdf printer and physical printer

    hallo,
    as the title says, my application prints files and they are printed to a pdf file and sent by an email or printed by a physically printer letter and sent as letter to the customer
    my application is a nightly batchjob in vb6 which has worked really well for some months but now the customer said, that some of the files have been printed to a pdf and sent by an email and also printed by a physicaly printer so i checked the logfiles and realized that there is only one printing mentiond of the files which have been printed twice (pdf and physically) so now i'm wondering
    the process looks like this:
    i read the data from the database, and if the customer has an email address i change the default printer to the adobe pdf printer, then i set value in the registry which is a parameter for the pdf printer, what the name of the file shall be after this i reset the default printer to the physically one
    in the logfile aren't any exceptions so the set of the default printer had to work, and also the set of the parameter for the pdf printer, and the files also had been sent by mail so i'm wondering if it's possible that windows or adobe has also sent the file to the physically printer, the OS is windows 2003 server
    hope you can help me
    if anything is fuzzy im ready to provide more informations
    thanks a lot
    greetings peter

    >nightly batchjob in vb6
    I think you need the Acrobat SDK Developer Forum http://forums.adobe.com/community/acrobat/acrobat_sdk

  • Why copying from particular pdf files and pasting to Words introduces improper fonts?

    Why copying from particular pdf files and pasting to Words introduces improper fonts?
    I’m wondering copying from particular pdf files and pasting to Words introduces improper fonts! Is there some workaround to avoid this problem?
    Thank you for the help
    Best
    Jamal

    Thank you for the answer.
    if i save it as Word, then the all goes fine.
    my issue here, is why in particular cases copying and pasting from the pdf file to Word is working very well, but in others, it is not!
    what might be the reason?
    best
    Jamal

  • Unable to print or export to word to print

    I cannot print will not export from PDF to word for me to print, what can I do to print.  When trying to print will not print  response is: expired, but I bought the Adobe ExportPDF, and was so suppose to be Annual fee paid. Don't understand why I can't  export to word in order to print, or why I just can't print it, my printer does print other items, such as e-mails, facebook, etc.
    Dee

    If you open the PDF in Reader and go to File>Properties>Security, what does it say?

  • Adobe PDF Printer and Adobe Distiller Printer, from where to get these?

    I installed Acrobat 7.0 Professional from the CS2 suite.  During installation a message came up, "Warning 20225, Adobe Acrobat 7.0 set up was unable to create a new item: The Adobe PDF Printer Converter may be unavailable.
    Get last Error: The specified module could not be found."
    To convert WORD files to pdf I get "unable to find "Adobe PDF Printer or Acrobat Distiller" printer. I have run the installer in repair mode several times without success.  Where from and how do I get the Adobe Printer and/od Distiller printer from.  I have searched the Adobe web site with out success. Please help anyone who can.

    Yes, the software was installed while logged in as administrator,
    anti-virus was disabled too.  I first installed AA7 using my original disc
    and the same messages came up and the same problem existed i.e.. could not
    convert to PDF.  Uninstalled the software and installed again using the
    serial no given to me by ADOBE help,CS2. Nothing seems to work.

  • PDF Printer and Acrobat fail to open or run or anything else.

    Hi
    Adobe Acrobat Standard 9 has been installed on this TS2008 (VM) server for over a year without problem until recently.
    To start, the Adobe PDF printer stopped creating PDFs. When it worked a user would print and the PDF (creation) progress bar dialog box would open and the Adobe Distiller icon would appear in the taskbar (swirling) and a PDF would be created. Now we get the progress bar but no Distiller icon and no PDF is created.
    Then Adobe Acrobat Standard (editor) failed to open any PDFs. We installed Adobe Acrobat 9 reader which opened PDFs for a while and now that has stopped working.
    After many uninstalls, reinstalls, reg cleans we decided to open a case with Adobe who told us that Acrobat 9 is not supported on Server2008. The customer purchased Adobe Acrobat X.
    We installed Acrobat X (in terminal server mode) and all was well for around 24hrs and then it all stopped working again.
    I have since uninstalled reinstalled again. I created 1 PDF and after that the progress bar just hangs. We performed a controlled user logon to the server and all was going well until one user logged in and he isnt able to open Acrobat to read or edit PDFs.
    There are no events logs which appear to directly relate to this. We were concerned about a HpBIDI driver which no longer errors but we do have a large amount of EventID 7036, ServerControl Manager Eventlog provider and EventID 4 SpoolerWin32SPL.
    We have since been back to Adobe Support who advised us to unplug the network cable which we cannot do as its a hosted VM (with no access to the the VM console). He then asked us to remove the server from the Domain which we can't do as this is a single live server. They intend to come back to me!
    We are really at a loss here for idea's, can anyone please provide some clues?
    Thanks

    Hi billu54860732,
    Try running the Repair command from under the Help menu to see if it corrects the problem.
    The probable cause of the error is, multiple processes of Acrobat/Reader running in the background.
    If 'Repair' doesn't resolve the issue kindly follow the steps mentioned below and check, if it helps.
    1) Press CTRL+ALT+DEL together
    2) Go to the Task Manager
    3) Go to Processes in the Task Manager and kill al the processes related to Acrobat/Reader.
    4) Launch Reader/Acrobat (It should launch without an error).
    To further isolate the issue you might want to run Acrobat/Reader in an environment where no other services are running.
    This can be achieved via "MSCONFIG"
    1) Click on start type run
    2) Type MSCONFIG in the run prompt
    3) Go to services and click on hide all Microsoft services
    4) Click disable all
    5) Go to the startup in configuration window and disable all startup items
    6) Restart your system
    7) Launch Acrobat/Reader
    If, it is launched without an error, a service on your system is conflicting with Acrobat/Reader.
    Let me know if issue persist.
    Regards,
    Aadesh

Maybe you are looking for

  • How to make Login in php and PHPMYSQL

    HI ALL ,,      i am new in dreamweaver .. so i  made an login page in dreamweaver Cs4 but it looks like it dosent  have what i want .. i want to write the usrname  after the user login "" when he enter the username and the password right then login f

  • HELP!  Corrupt Library...Can It Be Restored?

    I have my iPhoto library on an external hard drive.  The other day when I was importing photos from my iPhone, the drive dropped.  I was able to access the photos no problem right after the drop...no loud noises or whining.  I began backing up all my

  • Battery life not good on new iPad

    The battery dies even when iPad on standby. First iPad lasts for days

  • Sync error on apps

    Can anyone tell me what error OXE8003FFE is ? I am now all of a sudden unable to sync any of my apps ? every single one has this error. The usage bar at the bottom indicates they have all been synced and I have 125 apps on my iTouch but I only have t

  • How do I reset my iTunes in the Cloud -- iTunes wont connect to the cloud?

    In iTunes version 10.5.3 my iTunes in the Cloud will not connect, I do not get an error message, only the cloud icon continues to show a loading status. I have: - Reinstalled itunes from itunes.com - iTunes in the cloud works on my ipad and iphone An