Problems with "Submit" button on simple PDF form.

Hi there!
I have searched, but perhaps not searching forums correctly to find my answer as this seems like it should be easy to fix (she said hopefully).
I have created a simple, offline PDF form for an event registration.
I have fields all done, set it up to email back a simple FDF from the client with a Combo Box "Submit" button.
When the client fills in the fields and hits "Submit" button, she gets:
"The file may be read-only, or another user may have it open. Please save the document with a different name or in a different folder."
I created this in Adobe Acrobat 9.
Client is filling in using Windows XP.
I have extended release, no security, etc.
Is there something simple I am missing?
Have been able to get this to work before.
But now, not so much!
Any help is greatly appreciated!
Thanks!

That's not normal. Do you know what version of Acrobat/Reader the other person is using? Can you post the form somewhere? If not, I'd be happy to take a look at it if you are free to email it to me at: acroscript at gmail dot com

Similar Messages

  • How do I add a functional "submit button" to a pdf form in Adobe Acrobat Pro XI ? I created the pdf form in Adobe Forms Central.

    How do I add a functional "submit button" to a pdf form in Adobe Acrobat Pro XI ? I created the pdf form in Adobe Forms Central. It's for an online Diet Questionnaire. After people complete the form I'd like them to click "SUBMIT" and the completed form will be emailed to me.

    This can be a bit confusing because Acrobat 11 comes with the desktop app that allows you to create simple PDF forms without having a FormsCentral account. Some people find this helpful, but you need to understand that when you generate the PDF form, it is Reader-enabled by Acrobat. In order to edit the form further in Acrobat, you have to create a non-enabled copy of the form. You do this in Acrobat by opening the form and selecting: File > Save a Copy
    and opening the copy. It is not opened automatically.
    You can now add a button and set it up to submit by email, either using a "Submit a form" action or the submitForm JavaScript method. You can set it up to include just the form data or the entire PDF, and will want to use a mailto type URL. Submitting the form to the FormsCentral server has a number of important advantages over email (much more reliable, more secure, etc.), so you might want to consider it.
    If the form needs to be saved with Reader versions prior to 11, then you will need to Reader-enable the document. In Acrobat 11 you do this by selecting: File > Save As Other > Reader Extended PDF > Enable More Tools

  • How do I add a submit button to a pdf form?

    hello
    I am trying to add a submit button to a pdf form... is this possible though forms central or Acrobat Pro?

    If it is a PDF you created with FormsCentral, then yes, it should have a Submit button. See this for more info: http://helpx.adobe.com/acrobat-com/formscentral/help/create-fillable-pdf-form.html  and http://helpx.adobe.com/acrobat-com/formscentral/help/create-forms-locally-save-them.html
    If it's a fillable form created with Acrobat Pro, and you want to collect data with FormsCentral, then you import that existing PDF file into FormsCentral and add a Submit button to the form: http://helpx.adobe.com/acrobat-com/formscentral/help/navigate-formscentral.html#import_exi sting_fillable_pdf_forms
    I hope that helps,
    Brian

  • Problem with Submit Button in Adobe Forms Central

    I have a PDF form that I uploaded to Adobe Forms Central.  I created the fillable fields & the submit button in Forms Central.  I have several documents like this.  All have worked in the past.  Today on my latest file, the submit button doesn't always work.  I am getting some submissions, but some people have reported to me that the submit button does not work.  I tested it myself to see.  I had to create a Digital ID for myself, which seemed to work fine.  But when I click on submit, the form says "Submission Failed.  This form can no longer be submitted. Please contact the author."  I'm the author & don't know what the problem is.  Anyone know what the problem could be?

    The form is open. I should have mentioned that I made sure to check that first.  The form was created by uploading an existing PDF file that I created from a MS Word file to Adobe FormsCentral. Once the form was completed, I had a coworker test it & it worked.  We sent the form out & I have received some back, but have also received reports of the form not working.  I downloaded the form to my computer & tested it using Adobe Acrobat 9.0 Standard.  I use a Windows environment on a Dell laptop.  The form does not work for me.

  • Problem with submit button - Acrobat/Reader

    I have created a simple fillable form with Adobe Acrobat XI Pro with a submit button, form posted to the web. The form/button works fine for me in Google Chrome, IE, and Safari (Windows 8, Outlook email client) but doesn't seem to work for users with only Adobe Reader (9 was tested using an older version of Windsows and Outlook). After completing the form successfully, they are returned the error message: "This operation is not permitted" when they attempt to submit their form using the submit button. I'm not sure what program is causing the problem. How do I fix this?

    You need to Reader-enable the form using Acrobat. Before Reader 11 was introduced, Reader was not able to save a fille-in form unless the document was enabled. Since the changes need to be saved in order to attach it to an email, this is necessary for previous versions. Do enable a form in Acrobat 11, select: File > Save as Other > Reader Extended PDF > Enable More Tools

  • Problem with submit button

    I have installed Acrobat 9 professional and have created a PDF with field codes embedded.  At the top of the last page, I created a button which sends the form and answers to an email account (mailto: command is used).  The form works beautifully for me but not for anyone else.  There is no protection or other specialized settings enabled.  I can fill it in and submit the form with either Reader or Acrobat Pro.  Any suggestions or ideas to solve this little problem would be greatly appreciated.

    If they are using Reader you must either enable Reader Rights or change the submission to data only (preferred). You did not say if the form was created in Acrobat or Designer. There are significant differences and you need to indicate which you used.

  • Problem with submit button of jframe

    hi all
    i am having problems with the submit button. once the submit button is clicked the values should be updated to an array of objects. it is doing this. the problem is i want the current frame to close once i click submit button. i have a GUI at the background and once i click something this frame appears asking for details for th user to input. but i want only the current form to close, not the whole progrmy code is shown below
    thanks in advance
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class TextForm extends JPanel {
    public JTextField[] fields;
    public MainInteractiveMap mainClass;
    public TextForm(MainInteractiveMap m)
    mainClass= m;
    public TextForm(String[] labels, char[] mnemonics, int[] widths, String[] tips)
    super(new BorderLayout());
    JPanel labelPanel= new JPanel(new GridLayout(labels.length,1));
    JPanel fieldPanel= new JPanel(new GridLayout(labels.length,1));
    add(labelPanel, BorderLayout.WEST);
    add(fieldPanel, BorderLayout.CENTER);
    fields= new JTextField[labels.length];
    for(int i=0; i< labels.length;i+=1)
    fields[i] = new JTextField();
    if (i<tips.length)fields.setToolTipText(tips[i]);
    if (i<widths.length)fields[i].setColumns(widths[i]);
    JLabel lab = new JLabel(labels[i], JLabel.RIGHT);
    lab.setLabelFor(fields[i]);
    if (i<mnemonics.length)lab.setDisplayedMnemonic(mnemonics[i]);
    labelPanel.add(lab);
    JPanel p = new JPanel(new FlowLayout(FlowLayout.LEFT));
    p.add(fields[i]);
    fieldPanel.add(p);
    public String getText(int i){
    return (fields[i].getText());
    public void printForm()
    String[] labels = {"Location","No of Bedrooms","No of Bathrooms", "Garage","last selling price","current selling price"};
    char[] mnemonics ={'L','B','b','G','L','C'};
    int[] widths = {15,1,1,4,9,9};
    String[] desc = {"Location","No of Bedrooms","No of Bathrooms", "Garage","last selling price","current selling price"};
    final TextForm form = new TextForm(labels,mnemonics,widths,desc);
    JButton submit = new JButton("Submit");
    submit.addActionListener(new ActionListener() {
    public void actionPerformed(ActionEvent e){
    String location;
    final int sellingPrice;
    final int numOfRooms;
    final int marketPrice;
    final int numOfBathrooms;
    final int numOfGarages;
    location=form.getText(0);
    sellingPrice=Integer.parseInt(form.getText(1));
    numOfRooms=Integer.parseInt(form.getText(2));
    marketPrice=Integer.parseInt(form.getText(3));
    numOfBathrooms=Integer.parseInt(form.getText(4));
    numOfGarages=Integer.parseInt(form.getText(5));
    mainClass.Testing(location);
    System.out.println(numOfGarages);
    System.exit(0);
    JFrame f = new JFrame("Input details of House");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.getContentPane().add(form, BorderLayout.NORTH);
    JPanel p = new JPanel();
    p.add(submit);
    f.getContentPane().add(p, BorderLayout.SOUTH);
    f.pack();
    f.setVisible(true);
    regards

    you just need to change (at end of actionPerformed())
    System.exit(0);
    to
    [whateverFrame].dispose();
    easier to show a simple demo
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class Testing
      public void buildGUI()
        JButton btn1 = new JButton("Open new Frame");
        final JFrame f1 = new JFrame("#1");
        f1.getContentPane().add(btn1);
        f1.pack();
        f1.setLocationRelativeTo(null);
        f1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f1.setVisible(true);
        btn1.addActionListener(new ActionListener(){
          public void actionPerformed(ActionEvent ae){
            JButton btn2 = new JButton("Close/Return");
            final JFrame f2 = new JFrame("#2");
            f2.getContentPane().add(btn2);
            f2.pack();
            f2.setLocationRelativeTo(null);
            f2.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);//do not want to close with 'X'
            f1.setVisible(false);
            f2.setVisible(true);
            btn2.addActionListener(new ActionListener(){
              public void actionPerformed(ActionEvent ae){
                f2.dispose();
                f1.setVisible(true);
      public static void main(String[] args)
        SwingUtilities.invokeLater(new Runnable(){
          public void run(){
            new Testing().buildGUI();
    }

  • Submit button for online PDF form doesn't work for some users

    Two online forms I've created in LiveCycle Designer 8.2 work fine for me. But when some of my site's users click on the Submit button in either form, it simply flashes and then does nothing. It's a standard Submit button with a Mailto link. The documents are PDF Version 1.7, and I'm using Acrobat Pro 9.4.5 and Reader 9.4. Any suggestions on troubleshooting would be great.

    Has this form been enabled with Form Rights for Reader.  If the entire PDF is submitted, then the PDF must be Reader enabled to operate on Reader. 
    Another issue is that an email submit is entirely dependant on the user's system.  There must be a local email client installed and registered with the system.  Internet email will not work.  This is the most likely issue.  Althougth there are other things that could be wrong.  You might want to consider using the Acrobat.com to distribute your forms.  This method gets around the email issue for most users. 
    Other issues that could cause this problem are the users' version of Acrobat/Reader as well as any kind of funky system/security setup.   

  • My submit button on my PDF form is greyed out (will not work) after posting link to PDF on my WordPress website. It works in Acrobat Reader just fine.

    This is where you can see the form as clicked through to from the WordPress website page:
    http://pinetreeplayers.com/ptp_new/wp-content/uploads/2014/12/submit-a-play.pdf
    The PDF file was created in Acrobat 11, with a submit button. The submit button is actioned to send the form via email. It works perfectly by itself if the form is opened in Acrobat Reader, but once I upload the PDF to my WordPress site the submit button is greyed out, and will not complete the action to send on-click.
    How can I fix this please - can anyone offer advice?

    Yes. They need to download Reader and then disable Google Chrome's internal PDF viewer and enable Adobe Reader.
    FireFox should also be configured to use Adobe Reader and not the internal PDF viewer.
    The internal viewers are created to process PDF documents by not including the features and code to process PDF forms.

  • Problem with submit button in wweb dynpro abap

    hi all,
                we have problem in submit of our interactive form in web dynpro abap.
    my scenario.
                             on event submit we have to fetch data from database table and display the same.
    On click of the SUBMIT button for the first time it fetches data but when we change the input field and submit again it dsnt trigger the event(We need to double click only then event is triggered).
    Can anyone guide us on how to fetch the data at single click.
    Thanks and Regards
    Vinoth

    The form is open. I should have mentioned that I made sure to check that first.  The form was created by uploading an existing PDF file that I created from a MS Word file to Adobe FormsCentral. Once the form was completed, I had a coworker test it & it worked.  We sent the form out & I have received some back, but have also received reports of the form not working.  I downloaded the form to my computer & tested it using Adobe Acrobat 9.0 Standard.  I use a Windows environment on a Dell laptop.  The form does not work for me.

  • Problems with EC Sales List in PDF-Form

    Hi,
    i have a Problem with the EC Sales List (RFASLM00).
    When i use it with SAP script Form Output (F_ASL_DE) i will be asked
    for a Printer and it works. I get an Spool-No.
    When i use it with PDF Form Output (F_ASL_DE) i will be asked for a Printer
    (i don't use LOCAL). When finished  i get the message:
    Spool number 0000000000 LIST2S - EC sales list for 0888.
    No spool is create and i don't know where i can find the output. 
    Hope anyone can help.
    Regards, Dieter

    no need to take output of PDF.
    do one thing
    run report and generate spool for LOCL
    then
    <b>RSTXPDFT4</b> run this report with that spool number then u will get output in PDF format.
    Regards
    Prabhu

  • Newbee,Having problem with submit button

    Hi All,
    I am very new to servlet.I am trying to delete record from my list which i am loading and showing from same servlet.It is compiling fine but when I press delete button it is not deleting the record.I don't know what's wrong with it? After delete happes i just want to see the list.
    please somebody help me.
    Here is my code:
    public class Delete extends HttpServlet
    private static final String title = "Delete Messages";
    private int load_count = 0; // to verify reloading
    private Exception initial_exception = null;
    private Connection cx = null;
    private ResourceBundle rb = null;
    private String table = null;
    private List messages = null;
    public void init()
    try {
    rb = ResourceBundle.getBundle( "Settings" );
    table = rb.getString("table");
    Common.load_driver( rb );
    catch (Exception x) { initial_exception = x; }
    public void doPost(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException
    doGet(request,response);
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    throws IOException, ServletException
    HttpSession session = request.getSession();
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    if (initial_exception != null)
    out.println(initial_exception);
    return;
    messages = (List) session.getAttribute( "messages" );
    try {
    if (cx == null || cx.isClosed())
         cx = Common.get_connection( rb );
    if (messages == null)
         if (Common.DEBUG) System.out.println( "\n=> initial load of table" );
    messages = Common.getTable( cx, table );
    session.setAttribute( "messages", messages );
    catch(Exception x) { out.println("FIRST" + x); return; }
    out.println( "<html>"
              + "<head><title>" + title + "</title></head>"
              + "<body>"
              + Common.debug_display( request, load_count++ )
              + "<h3 align=center>"
              + title
              + "</h3>"
              + "<form action='..'>"
              + "<input type=submit value='top' />"
              + "</form>"
         String selected_index = request.getParameter("index");
         System.out.println("index=" + selected_index);
    if (messages.size() == 0)
    out.println( "<h4 style='color:red'>NO MESSAGES</h4>"
              +"</body></html>" );
    return;
    out.println( "<form>"
         + "<select name=index size=5 onchange='submit()'>\n"
         + Common.selection_list( messages, selected_index )
         + "</select>"
         + "</form>"
    if (selected_index != null)
         Message m = null;
    try {
    m = (Message) messages.get(Integer.parseInt(selected_index));
    catch(Exception x) { out.println("SECOND: " + x); return; }
    out.println( "<table>\n"
    + "<tr valign=top>\n"
    + "<td align=right>Creation:</td>\n"
    + "<td>"
    + "<input type=text onfocus='blur()' size=30 value="
    + Common.sgml_quote(Message.time2str(m.getCreation()))
    + ">"
    + "</td>"
    + "</tr>"
    + "<tr valign=top>\n"
    + "<td align=right>Subject:</td>\n"
    + "<td>"
    + "<input type=text onfocus='blur()' size=50 value="
    + Common.sgml_quote(m.getSubject())
    + ">"
    + "</td>"
    + "</tr>"
    + "<tr valign=top>\n"
    + "<td align=right>Body:</td>\n"
    + "<td>"
    + "<textarea onfocus='blur()' cols=50 rows=10>"
    + m.getBody()
    + "</textarea>"
    + "</td>\n"
    + "</tr>"
    + "</table>\n"
    + "<input type=submit name='action1' value='Delete'>"
    out.println( "</body></html>" );
    if (request.getParameter("action1") != null)
    Message m = null;
    String subject = request.getParameter("subject");
    String body = request.getParameter("body");
    try {
    String date = request.getParameter("creation");
    System.out.println( "\n=> date" + m.getCreation() );
    String sql_delete = "DELETE FROM" + messages + "WHERE creation = "+ Common.mysql_quote(m.getCreation());
    Statement st = cx.createStatement();
    st.executeUpdate( sql_delete );
    messages.remove( selected_index);
    session.setAttribute( "messages", messages );
    catch(Exception x) { out.println("SECOND" + x); return; }
    out.println( "<h4 style='color:red'>Message successfully deleted</h4>" );
    subject = body = null;
    out.println( "<html>"
    + "<head><title>" + title + "</title></head>"
    + "<body>"
    + Common.debug_display( request, load_count++ )
    + "<h3 align=center>"
    + title
    + "</h3>"
    + "<form action='..'>"
    + "<input type=submit value='top' />"
    + "</form>"

    I don't understand very well your code because it has no organization. Try to put all your code between a tag that is the word code inside brackets, and close that tag at the end of your code.
    For the code that I read, you're trying to get the parameters of a form that is in the same servlet. And the forms that you print didn't have an action. So, first of all, put an action on those forms, otherwise they will do noting, at least that you supply some javascript, which isn't the case. Later, don't think that you can call or continue the methods on a servlet just because you press a button which is printed in the same servlet.
    Nevertheless, put that code into brackets and we will try to help you better.
    Regards.

  • Problem with submit button in JEditorPane

    Hi,
    I'm trying to create a browser using JEditorPane. But I have 2 problems.
    1. Refreshing the current page in JEditorPane
    2. My HTML page doesn't submit the request at all.
    Is it a problem in JEditorPane or I should make it submit as we do for hyperlinks.
    If yes, then please send me the code to make a HTML page submit.

    The form is open. I should have mentioned that I made sure to check that first.  The form was created by uploading an existing PDF file that I created from a MS Word file to Adobe FormsCentral. Once the form was completed, I had a coworker test it & it worked.  We sent the form out & I have received some back, but have also received reports of the form not working.  I downloaded the form to my computer & tested it using Adobe Acrobat 9.0 Standard.  I use a Windows environment on a Dell laptop.  The form does not work for me.

  • Problems with submit button.

    All i have run a report with the following SQL which creates the report and assignes tick box to select if you want to keep the value in the row.
    select HTMLDB_ITEM.CHECKBOX(1,recert,'CHECKED') "Accept",traderid,account,alias,credit,currency,allowtrading,ignorepl,riskon,lastmod,whomod,ipaddress,recert from xtrad.xtrader_recert_accounts where recert = '0'
    When i click submit on the report all values in the database get and recert gets set to 1, even if i untick certain one.
    FOR i in 1..HTMLDB_APPLICATION.G_F01.COUNT LOOP
    UPDATE XTRAD.XTRADER_RECERT_ACCOUNTS SET recert = '1' WHERE recert = HTMLDB_APPLICATION.G_F01(i);
    END LOOP;

    So i have changed the line proc to say
    FOR i in 1..HTMLDB_APPLICATION.G_F01.COUNT LOOP
    UPDATE XTRAD.XTRADER_RECERT_ACCOUNTS SET recert = '1' WHERE ACCID = HTMLDB_APPLICATION.G_F01(i);
    END LOOP;
    When i run it i get
    0.02: Processing point: ON_SUBMIT_BEFORE_COMPUTATION
    0.02: Branch point: BEFORE_COMPUTATION
    0.02: Computation point: AFTER_SUBMIT
    0.02: Perform Branching for Tab Requests
    0.02: Branch point: BEFORE_VALIDATION
    0.02: Perform validations:
    0.02: Branch point: BEFORE_PROCESSING
    0.02: Processing point: AFTER_SUBMIT
    0.02: ...PLSQL (AFTER_SUBMIT) FOR i in 1..HTMLDB_APPLICATION.G_F01.COUNT LOOP UPDATE XTRAD.XTRADER_RECERT_ACCOUNTS SET recert = '1' WHERE ACCID = HTMLDB_APPLICATION.G_F01(i); END LOOP;
    0.02: Show ERROR page...
    0.02: Processing point: AFTER_ERROR_HEADER
    Error Unable to update Trader Accounts.!
    OK
    0.02: Processing point: BEFORE_ERROR_FOOTER
    ORA-01722: invalid number
    So that is the ACCID or the variable (i)

  • How can I make a button on the PDF form invisible?

    Hi all.
    I added a submit button to my PDF form but I do not want it to print on the form or appear when the form is e-mailed?
    Is there a way to make it invisible before I print or e-mail the document?
    If this is not possible, is there a way to add the submit button along with the javascript that needs to run when the PDF is opened?
    Thanks!

    Set the button's properties to "Visible but doesn't print"

Maybe you are looking for

  • Key figure data in BEx report

    Hi, We are viewing some of the Key figure data of a particular report as ".", "$21.99MIN" etc, where $21.99 is the original value. When we click on the excel sheet cell and view in the formula bar, data is showing $21.99 correctly. But it is appearin

  • Dell C1660w printer - no driver for Mac OS X 10.9.2

    I bought a new Dell C1660w printer based upon past experience with this very same printer model that I used at a previous previous job not more than a month ago. I used the previous C1660w printer on an Apple Mac Book Pro and so naturally purchased a

  • Why can't iTunes find album art when it is showing in Media Player?

    I am new to iTunes, having previously used windows media player. What a disappointment.  The sooner Apple get back to being a niche plyer the better. In Windows media player, every one of my albums has the artwork on it. Import to iTunes the crock of

  • Return sales excise posting

    Dear Excperts, For return sales we are posting the excise JV through J1IH  in additional excise tab with reference to excise invoice.but  when we are seeing the same in J2I9 abstract view the values showing under crdit utilized during the month .but

  • IPhoto Spinning Wheel

    I get a spinning wheel when opening Iphoto 11 latest version (9.2.3). Looked at the repair library option but doesn't seem to do anything spinning wheel just continues. IPhoto was working fine up until a couple of days ago. Any ideas for next steps?