Radio buttons are always checked when I print a PDF document

I had an existing PDF file, which I turned into a form with Adobe Acrobat. Everything works fine, except that for the radiobuttons.
When I fill in the form the radio buttons work as expected. I can also save my completed form afterwards. The problem occurs when I try to print the completed form. All radio buttons are checked when I print out the completed form. It doens't correspond with the checked fields I saved.
Can someone please help me, because I'm clueless and can't find an answer with Google.

Pat Willener,
Many thanks for the helpful suggestions. . Sean Mitchell's suggestion of
repairing Adobe reader via the help menu did the trick. I have been able to
print several PDF documents after following his suggestion.
Very many thanks for the assistance
Peter Goldsworthy

Similar Messages

  • Is impossible to know when you print a PDF document from Workflow? how?

    Hi
    I am creating a workflow that prints a PDF form and send it in a WorkItem to the user's inbox, once you run the WorkItem a PDF is opened the user ... I wonder if you can capture an event if the user prints the document or cancels ... I do not speak English and translated into the google translator excuse any errors.

    http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/prnmngr.mspx?mfr=true
    http://forums.ni.com/ni/board/message?board.id=170&message.id=183895&requireLogin=False
    you might be able to use system exec to print files.

  • I use three Google buttons- and one or two don't get saved on exit. When I use my Google Mail button, the mail and news buttons are always hidden when I exit mail and Google Directions button often gets displayed. Has happened through at least three versi

    Google Buttons Get Hidden
    == This happened ==
    Every time Firefox opened
    == I installed Firefox a few months ago.

    I found the solution at the Google support page. Google buttons might either change or disappear if Google Toolbar is set to access Google Toolbar settings everywhere. Change that setting to local computer only takes care of it. (So Far.)

  • Printing a PDF document to Adobe PDF rotates 90degrees clockwise

    When I print a PDF document (scanned) to the Adobe PDF printer the resulting document is rotated 90 degrees clockwise. Regardless what settings are in Pro or the Adobe PDF writer.
    How do I prevent Acrobat Pro or Adobe PDF from rotating documents?
    (CS6 / Windows 10 / Lenovo X1 Carbon)

    Settings that produce a rotated document:

  • I have Safari on an HP desktop running Windows 7, 64-bit. When I want to clear the history from Safari, the "Reset Top Sites Also" button is always checked. This can cause problems. Any way to have it unchecked all the time?

    I have Safari on an HP desktop running Windows 7, 64-bit. When I want to clear the history from Safari, the "Reset Top Sites Also" button is always checked. This can cause problems. Any way to have it unchecked all the time?

    Welcome to the HP Forums Hinalover,
    I see by your post that you are having issues with the print spooler on the Windows 7 computers.
    I can help you with this issue.
    Download and run the Print and Scan Doctor. It will diagnose the issue and might automatically resolve it. Find and fix common printer problems using HP diagnostic tools for Windows?
    Try running the Microsoft Fix It Tool to see if it will fix the print spooler.
    Diagnose and repair Windows File and Folder Problems automatically.
    You can also run the System File Checker to repair corrupted or missing files.
    System File Checker: Run sfc /scannow & analyze its logs in Windows 7 | 8.
    You might end up having to do a repair of Windows.
    Please let me know the results.
    Have a nice day!
    Thank You.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Is it possible to fire an event when radio buttons are clicked in a report?

    Hi All,
    I have got a requirement. In the selection screen i have certain input fields and three radio buttons. When radio buttons are clicked i have to grey out certain input fields. Is it possible to fire an event when i write program through se38??
    Thanks
    Rakesh

    Hi Rakesh,
    Check this code.
    SELECTION-SCREEN BEGIN OF BLOCK FINPUT WITH FRAME TITLE TEXT-001.
    PARAMETERS  : FILENAME(132) TYPE C LOWER CASE  NO-DISPLAY,
                  FDLOAD RADIOBUTTON GROUP RAD1
                  USER-COMMAND R1 ,
                  FUPLOAD RADIOBUTTON GROUP RAD1 .
    SELECTION-SCREEN END OF BLOCK FINPUT.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-002.
    PARAMETERS : FUNAME(132) TYPE C LOWER CASE MODIF ID AA.
    SELECTION-SCREEN PUSHBUTTON /33(30) ACTION USER-COMMAND
                     BTNACT MODIF ID AA VISIBLE LENGTH 8 .
    SELECTION-SCREEN PUSHBUTTON 43(30) CANCEL USER-COMMAND
                     BTNCAN MODIF ID AA VISIBLE LENGTH 8  .
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-002.
    PARAMETERS : FDNAME(132) TYPE C LOWER CASE MODIF ID BB.
    SELECTION-SCREEN PUSHBUTTON /33(30) ACTIONS USER-COMMAND
                     BTNACT1 MODIF ID BB VISIBLE LENGTH 8.
    SELECTION-SCREEN PUSHBUTTON 43(30) CANCELS USER-COMMAND
                     BTNCAN1 MODIF ID BB VISIBLE LENGTH 8.
    SELECTION-SCREEN END OF BLOCK B2.
    DATA : ACTNAME(8) TYPE C,SCRGRUP(2) TYPE C.
    INITIALIZATION.
    ACTIONS = 'Download'.
    CANCEL = 'Cancel'.
    ACTION = 'Upload'.
    CANCELS = 'Cancel'.
    ACTNAME = 'Download'.
    SCRGRUP = 'AA'.
    AT SELECTION-SCREEN ON RADIOBUTTON GROUP RAD1.
    IF FUPLOAD = 'X'.
         MOVE 'Upload' TO ACTION.
         MOVE 'Upload' TO ACTNAME.
    ELSEIF FDLOAD = 'X'.
         MOVE 'Download' TO ACTION.
         MOVE 'Download' TO ACTNAME.
    ENDIF.
    AT SELECTION-SCREEN.
    IF SY-UCOMM = 'R1'.
        IF ACTION = 'Download'.
          SCRGRUP = 'AA'.
         MESSAGE S007(ZMESSAGE).
        ELSEIF ACTION = 'Upload'.
          SCRGRUP = 'BB'.
         MESSAGE S008(ZMESSAGE).
       ENDIF.
    ELSEIF SY-UCOMM = 'BTNCAN' OR SY-UCOMM = 'BTNCAN1'.
      LEAVE PROGRAM.
    ENDIF.
    *AT USER-COMMAND.
    CASE SY-UCOMM.
       WHEN 'ACTIONS'.
         LOOP AT SCREEN.
           IF SCREEN-NAME = 'FUNAME'.
           ENDIF.
         ENDLOOP.
    ENDCASE.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR FUNAME.
      PERFORM call_filedialog CHANGING FUNAME.
    PERFORM call_filedialog CHANGING FUNAME.
    AT SELECTION-SCREEN OUTPUT.
    LOOP AT SCREEN.
    IF SCREEN-GROUP1 = SCRGRUP AND ACTNAME = 'Download' .
      SCREEN-ACTIVE = 0.
      MODIFY SCREEN.
    ENDIF.
    IF SCREEN-GROUP1 = SCRGRUP AND ACTNAME = 'Upload'.
      SCREEN-ACTIVE = 0.
      MODIFY SCREEN.
    ENDIF.
    ENDLOOP.
    FORM call_filedialog CHANGING fname.
      DATA: li_filetable TYPE STANDARD TABLE OF file_table,
        lv_return TYPE i,
        lw_filetable TYPE file_table.
      CALL FUNCTION 'TMP_GUI_FILE_OPEN_DIALOG'
        TABLES
          file_table = li_filetable
        EXCEPTIONS
          cntl_error = 1
          OTHERS     = 2.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      READ TABLE li_filetable INDEX 1 INTO lw_filetable.
      fname = lw_filetable-filename.
    ENDFORM.                    "call_filedialog
    Reward Points, if useful.
    Regards,
    Manoj Kumar

  • When I print a PDF it always prints as a booklet, how can I print 1 full page?

    When I print a PDF it always prints as a booklet, how do I print a full page?

    In the Print dialog box you should be able to indicate which page you want to print and that page will print.  For instance, if you are viewing page 4, in the Print dialog, select "current page" and page 4 prints. This won't work if your page is actually a 2-page spread.  What size is the booklet?

  • Exporting build - destination devices radio buttons are not there

    I created an ios project using flash builder 4.5. but when i go to export a final build the target device radio buttons are not there on the interface. it has to be an installation issue but i've uninstalled and reinstalled multiple times with no success. has anyone else had this issue?
    thanks

    here is a screen shot

  • When I print to PDF using Acrobat 11 Pro from any application the acrobat Reader does not launch automatically. Associations are correct. Thx for your help,  Bruce

    When I print to PDF using Acrobat 11 Pro from any application the acrobat Reader does not launch automatically. Associations are correct. Happens from Chrome, IE, Word, Excel, Powerpoint. Previously had deskPDF installed but uninstalled correctly. Can't find a preference setting for the auto launch. Thx for your help,  Bruce

    A simple way is to flatten the form fields, which converts the field appearances to regular page contents. You can do this with JavaScript or PDF Optimizer (Advanced > PDF Optimizer > Discard Objects > Flatten form fields). A very nice script that adds a custom menu item can be found here: http://www.uvsar.com/projects/acrobat/flattener/

  • When printing in Excel It is always want to use the acrobat X pro trial, which the trial is expired. I do not want to use acrobat X pro trial anymore. How can I reset it and use simple acrobat to print my PDF document?

    When printing in Excel It is always want to use the acrobat X pro trial, which the trial is expired. I do not want to use acrobat X pro trial anymore. How can I reset it and use simple acrobat to print my PDF document?

    Hi screen name,
    Adobe PDF printer gets installed when you install Acrobat 10 Pro.
    To use this printer you need to purchase Acrobat. Once the trial period is over you cannot use the printer to create pdf files.
    An alternative way for you is to utilize Microsoft's own inbuilt pdf engine.
    You can simply open the file and select 'Save as' and in the type list select 'pdf'
    Please refer : http://office.microsoft.com/en-in/excel-help/save-as-pdf-HA010354239.aspx
    Regards,
    Rave

  • Button that always works when Unde the Enter key to record the information?

    Hello everyone,
    How do Oracle Express, a button that always works when Unde the Enter key to record the information
    and every time I write some information that the cursor is placed back into the Text Field item only on my screen
    order to optimize this process
    I appreciate your cooperation and attention ...
    good day ...
    Reynel Martinez Salazar

    Hi,
    First, you should change your text item to a "Text Field (Always submits page when Enter press)" item. This adds a call to the submitEnter() javascript function which will submit the page when you press Enter while in the text field.
    Second, on your page, edit the Page definition. In there is a setting called "Cursor Focus" - set this to "First Item on Page". When the page is loaded, this will put the cursor into the text field.
    Andy

  • On my screen the image is clear and the colors are right, However when I print to either my epson of HP the image color is off.

    On my Mac screen my photo image is clear and the color are right, however when I print to either my epson 2200 or my HP printer bother the colors are off and the image is not as clear as on the screen.

    Hi there,
    This article should cover the issue you are experiencing. Give the steps outlined a shot and let us know if it helps.
    Best of Luck!
    You can say thanks by clicking the Kudos Star in my post. If my post resolves your problem, please mark it as Accepted Solution so others can benefit too.

  • When I Print a PDF, Adobe Reader X Prints Doc As A Very Small Version

    I have a Lexmark Interact S605 All In One Printer.  When I scan documents as a pdf, and go to print, the actual document does not even fill the page.  In fact it's a very small version of the document in the middle of the page.  How do I somehow change the Page Scaling to "Fit To Printable Area?"  It's embarrassing when I send these documents out to clients and they come back to me and say that these pdfs are very small on the page and do not even come close to filling up the entire page as a pdf should.  Are there settings that I can change so that when I print a pdf, it will Fit To Printable Area each time???  Thank you in advance for any help on this question.  [email protected] 

    Try deleting the Adobe plugin and use the built in Preview. Hard drive level Library/Internet Plugins. If it isn't there, check your user Library.
    Quit the application.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Library.

  • Raised line (looks like toner is being deposited on the paper) when I print a PDF

    I'm getting a raised line on the right side of every page (it looks like toner is being deposited on the paper) when I print a PDF, but not when I print other kinds of documents. This is with a Laserjet 1300N, using Win7 Pro 64 bit. What can I do about this?

    From Adobe Reader, launch the Print Dialog.
    Click the Advanced button located at the Buttom.
    Make sure to check the Print As Image ceckbox and accept.
    Now try printing and check for any improvement.
    Please let me know if that helps.
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • Adobe Acrobat 9 Pro do not open when printing a pdf document. Can anyone help?

    Adobe Acrobat 9 Pro do not open when printing a pdf document, instead I open it with Adobe Reader X to be able to print.
    Can anyone help?

    Hi Edna,
    It sounds like Adobe Reader X is your default PDF file handler. Launch Adobe Reader X.  Choose Edit > Preferences > General.  Click the 'Select Default PDF Handler' button at the bottom and choose Acrobat 9 from the drop-down menu.  Click Apply, then OK.
    Restart your computer.  Acrobat 9 should now be your default PDF file handler again.
    -David

Maybe you are looking for

  • How can I get back to iOS 6?

           When I saw the iPhone 4 for the first time,I fell in love with it. I love the keyboard! I love the  lock screen! All the things looked perfect! And the iPhone 4S was even better! The Siri could give me answers directly!        But when I saw i

  • Reloading a database in SAP R/3 4.6C on Windows

    Hello Anyone know if is possible Reloading  a database SAP R/3 4.6C Windows / Oracle, using an specific .R3S??? I have seen there is service DBRELOAD.R3S but is for Unix, ... There is ahother one for Windows? Thanks and regards Javier

  • Need help restoring a C: (boot) drive on a client computer

    What is the best way to restore the c: drive on a client computer?  The SSD died so I have to start with a new drive.  Can I plug the new drive into another client that is working and restore the drive from there?  Or, do I need to install the OS on

  • How to create tables in Database when webdynpro project is deployed

    Hi I Created a project.in that i created stuctures using simpletypes.Based on structure  i created the Context,then created screens.Now how to create tables in database using this structures .Because i want to store the values in the database.Please

  • Multi value Cascading Parameters Not working

    Hi , I have created two report parameters and want them as Cascading. District Parameter depends on Region Parameter which should allow Multi selection. When I select single value in Region it works perfectly. But when I choose multiple values, Distr