Forms: Translating Word Form to PDF Form

I have created a fill-in form in Microsoft Word (protected). Does anyone know how to then make it a fill-in form in Acrobat? Years (and years) ago, Word had an icon on the toolbar that you simply clicked. Acrobat help says use the "Acrobat toolbar." Help me on that? I could probably recreate the darn thing in Acrobat, but it's much easier for me to work in Word. Thanks.

I am new to this and trying to do the same thing.  For interactive forms you save the word file to pdf first.  Then, using the forms tool you create the form.  Acrobat searches the fields and identifies what it thinks are the interactive fields.  From there you can go to a host of editing tools to modify, add or delete fields.
Jay

Similar Messages

  • Is there a way to select a word in a pdf form and have it circled

    is there a way to select a word in a pdf form and have it circled instead of say check marked

    https://discussions.apple.com/community/professional_applications/final_cut_stud io
    Al

  • Generate a MS Word report from PDF Form

    Is there a way to generate a MS Word file output from the contents of a PDF form?
    Background:
    Back in the days when Acrobat Pro was packaged with LiveCycle Design for PDF form development, I created a very extensive document that walked the reader through a series of questions and then gathered the answers into a printable form.
    Unfortunately, the new version of Acrobat no longer is integrated with LiveCycle and I need to make updates to the document. LiveCycle only works on Windows machines and since I am on a Mac, it seems that I am left with few options.
    What would be the best possible solution is if after the reader entered all of the data in the PDF form, they could click a button and the document would generate a MS Word file with all of the variables and input fields arranged in a meaningful format.
    Is there any way to accomplish this in the new Acrobat Pro?

    Apparently you had LiveCycle Designer in the past.
    Unfortunately, the format of the form field names used by LiveCycle are different than the format used by Acrobat.
    You could try exporting the Forms Central form to the PDF format and you might be able to use the form to import the data.

  • Converting Word Doc to PDF Form

    I am trying to convert a word document into a PDF Form.
    I have tried running the 'Form Wizard' in Acrobat 9.x Pro. I have the current version, just can't remember the rev. number.
    Supposidly the Form Wizard will recognize areas of the word doc as fields and insert fields automagically. I have tried the wizard several times from within Word 2007 and Acrobat Pro. no luck. Nothing is recognized.
    Any ideas? I don't want to have to manually re=create the form unless I have to.
    I am attaching the PDF doc and hoping someone can help with this.

    I know it's user to user, but I'm an optimist, and figured I'd toss in a UX suggestion while I was at it.    Apologies if that aside was misplaced.
    I'm pretty sure none of the "fields" I made were actual form fields according to Word, they were just things like text boxes, or, more frequently, tables (the doc I was working from had values filled in where form spaces should go, so I frequently used text -> table to keep the formatting as consistent as possible, then deleted the filled-in values).
    One of the reasons I wanted to do it this way is that it can sometimes be a pain to line up the form fields in Acrobat such that the text when filled in lines up with the already-present text (or am I missing a trick?)
    Also, as an update, I tried PDF-form-ifying just page 1, and got the same error, then tried PDF-form-ifying everything but page 1, and again, same error.

  • How to Supply the form field values to a pdf form when loading it

    I am working on a web site project using Asp.net where the user has to fill in a PDF eform in acrobat reader. Then when he clicks on submit it returns to my asp.net app and the PDF form supplies the values back to my asp.net app. So my asp.net app has the values that were filled in the PDF form and can save those values and work with them...
    OK.
    What I need to know is when I am in my asp.net app, and the user wants to go back and reopen the same form, from my asp.net app..... then how do I pass back the values that were saved back to the PDF form??
    I know if I had a way to pass the values to the PDF form in some way then in the Doc.open or doc.load event of the form I could easily write a little javascript to plug in the values in the PDF form fields.
    but how do I pass those values from my asp.net app to my PDF form???
    thanks

    Thanks bcweed for all the info. I fixed my problem, it had something to do with LiveCycle Designer. If I just use Acrobat to add the form fields, then the FDF works fine. As to your situation with the SavToBuf, that happens to be the method that I am using, so I will just post my code here, and maybe you can pick out what is different from yours. The Response.BinaryWrite(FDFin.FDFSaveToBuf)is at the bottom.
    Sql = "SELECT * FROM Invoices" & WHERE
    Set Conn = Server.CreateObject("ADODB.Connection")
    Conn.Open Db_Conn_Str
    Set Rs = Server.CreateObject("ADODB.Recordset")
    Rs.Open Sql, Conn, adOpenStatic, adLockReadOnly, adCmdText
    If Not Rs.EOF Then
    End If
    Set FdfAcX = Server.CreateObject("FdfApp.FdfApp")
    Set outputFDF = FdfAcX.FDFCreate
    'VendorID = VendorName = VendorNum = InvoiceDate = PreparedBy = ""
    Gross = 0
    For I=0 To Rs.RecordCount-1
    If InStr(VendorID,Rs.Fields("VendorID")) = 0 Then
    VendorID = VendorID & Rs.Fields("VendorID") & ", "
    End If
    If InStr(VendorName,Rs.Fields("VendorName")) = 0 Then
    VendorName = VendorName & Rs.Fields("VendorName") & ", "
    End If
    If InStr(InvoiceNum,Rs.Fields("InvoiceNumber")) = 0 Then
    InvoiceNum = InvoiceNum & Rs.Fields("InvoiceNumber") & ", "
    End If
    If InStr(InvoiceDate,Rs.Fields("InvoiceDate")) = 0 Then
    InvoiceDate = InvoiceDate & Rs.Fields("InvoiceDate") & ", "
    End If
    If InStr(PreparedBy,Rs.Fields("PreparedBy")) = 0 Then
    PreparedBy = PreparedBy & Rs.Fields("PreparedBy") & ", "
    End If
    Rs.MoveNext
    Next
    Rs.MoveFirst
    outputFDF.FDFSetValue "VendorID",VendorID,False
    outputFDF.FDFSetValue "VendorName",VendorName,False
    outputFDF.FDFSetValue "InvoiceNum",InvoiceNum,False
    outputFDF.FDFSetValue "InvoiceDate",InvoiceDate,False
    outputFDF.FDFSetValue "PreparedBy",PreparedBy,False
    For I=0 To Rs.RecordCount-1
    outputFDF.FDFSetValue ("Line."&I), Rs.Fields("Amount")&"", False
    outputFDF.FDFSetValue ("Company."&I), Rs.Fields("Company")&"", False
    outputFDF.FDFSetValue ("GL."&I), Rs.Fields("GL")&"", False
    outputFDF.FDFSetValue ("CC."&I), Rs.Fields("CostCenter")&"", False
    outputFDF.FDFSetValue ("DocNum."&I), Rs.Fields("DocNumber")&"", False
    Gross = CCur(Gross) + CCur(Rs.Fields("Amount"))
    Rs.MoveNext
    Next
    outputFDF.FDFSetValue "Gross", Gross, False
    Rs.Close
    Set Rs = Nothing
    Sql = "UPDATE Invoices SET DatePrinted = '" & Now() & "'" & WHERE
    Conn.Execute Sql
    Conn.Close
    Set Conn = Nothing
    outputFDF.FDFSetValue "PrintDate", Date(), False
    outputFDF.FDFSetFile "http://admin/invoices/pdf/InvoiceAuthorization.pdf"
    Response.ContentType = "application/vnd.fdf"
    Response.BinaryWrite outputFDF.FDFSaveToBuf
    outputFDF.FDFClose
    %>

  • Acrobat XI programmatically reset/clear all form fields when opening a PDF form

    I've got a PDF form document that I'm working on.  I'd like to add something to it to programmatically clear or reset all form fields to blank when the document is opened.
    Thoughts/ideas??
    Mucho thanks!!

    You can use the resetForm JavaScript method, either in the initial page's Page Open event or in a document-level JavaScript whic will execute when the document is opened.
    http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.523.html

  • Displaying a PDF form output in another Static PDF form

    Hi ,,
    I  have developed a PDF form in Web Dynpro. The form is Working fine.
    Now i want that after pressing the button "Submit" it should Navigate to the Next View(Display) and Displays the Output in PDF form(Static).
    Is it possible to do this??
    In short is it possible to have two views containing PDF forms in the same application and is navigation possible between them?
    Regards
    Pranay

    hi,
    Create the data source for both views and map Interactiveform UI element
    And you can give the plugs in as usual.
    thanks,
    Lohi.

  • Can a change be made to the original Word document without losing form fields in a saved PDF form?

    I have a new fillable form created with Acrobat 9 that has 10 pages of fields on it. I noticed a typo in the original Word doc I created the form from and wondered if there is anyway to make changes in the source document without having to recreate all fields again.
    Thanks!
    Frank

    Yes, just create a new PDF and replace the pages of the old one that has the form fields with the pages from the new: Document > Replace Pages
    Any fields, code, bookmarks, links, etc. will be retained.

  • Form Field in word forms to be exported to pdf form

    Dear all,
    Within our company, all templates for documents are existing in word .doc format and will be edited in word as well.
    I would like to add a form field within these word  templates which will be recognised by Acrobat 8 Pro automatically as a form field for a digital signature.
    I would like to do this within the word form, because I don't want to add the numerous (up to 10) signature fields manually with the Acrobat form
    each time I export this file to .pdf.
    This is necessary in order to certify a document with a visible signature and to allow more colleagues to sign this document as well after my certification.
    Does someone know a workaround or even a solution?
    Thanks in advance!
       Matt

    The auto field wizard does not catch all fields or types of fields (signature is one of them), does not keep exclusionary groups, and does not add the optional values. The wizard can have a hard time recognizing check boxes and radio buttons.
    So even after you run the wizard there is a lot of manual clean up to perform. I just find it easier to create the form fields as needed. I also use a lot of field naming for automation processing of groups of fields.
    Open Office does not do signature, but it keeps the options for combo/drop downs and radio buttons/check boxes.

  • Want more robust form fields in InDesign for PDF forms.

    I wish that soon InDesign CS6 Interactive Form Fields will include the COMB field for entering data in various formats such as phone numbers, credit card numbers, using some sort of format like [number of characters] ["(nnn) nnn-nnnn"]. I use comb fields a lot. Likely others do too. I realize that we are at v1.0 in the InDesign Interactive fields, so I hope that the developers will consider this for the next release!
    I long for the power that Acrobat fields have to be implimented in InDesign.

    The powers that be (InDesign product managers, engineers, or other employees) don't frequent this forum. To have you voice heard, file a feature request:
    Adobe - Feature Request/Bug Report Form

  • Saving a fillable pdf form as a non-fillable pdf form in Acrobat

    Hi all,
    I have created a form from Acrobat Pro 9 and I would like users to be able to fill out the fields, be able to edit, save it and email them back to me. Although, once it is sent, I would like the form to be locked and non-fillable.
    Is this possible in Acrobat Pro 9?
    Thank you in advance.

    Use digital certificate signature to lock the fields.

  • Importing XML form data, and reading a PDF form in Reader

    The title pretty much says it all. My colleagues have the latest in Adobe Reader (9). They would like to import the form data that they receive in their email as an xml attachment. They would like to read the form as it is filled out in their reader.
    Please tell me how.

    I think they have to have Acrobat to import the data. Reader was not meant to keep data for the user unless Reader Right's are enabled (limited use of form for this typically). The US gov't has done this for years for tax forms at a substantial cost I am sure. The Reader Right's that comes in Acrobat is limited to the number of uses of the form, but the full rights can be negotiated with Adobe for more than 500 uses.
    The answer used to be to buy your colleagues Acrobat, it would be cheaper than paying the additional enabling cost. With the limited use of the rights with the current versions, Adobe has made a compromise on there old policy. You might look at PlanetPDF to see if there are some third party applications that would meet your need.

  • Replaced attachment and saved PDF form, after re-opening same PDF form previously attached file are missing

    Hi team,
    Can any one help me................!
    While am trying to replace the attached file in pdf saved , when re-open again file are missing in PDF

    Sorry, I do not understand what you are trying to say; can you rephrase that?  Also, what was attached to what?

  • PDF form from Excel spreadsheet/table

    I am developing a process where folks enter data (all text) to a central spreadsheet, and someone uses Acrobat X to generate a form. The form needs checkboxes (one per table row), and a digital signature above the table. I'm running into a couple of issues:
    1) I am trying to automate the creation of checkboxes, so that whoever is generating the final PDF form does not need to add a checkbox for each row. I noticed that in Excel, in Develop mode, one can add checkboxes, and on my first try, the PDF form creator seemed to translate those automatically into PDF form checkboxes so that no extra manual step was needed. In my last few tries, the conversion no longer auto-converts checkboxes. Any tips on this?
    2) I also noticed that whereever there is blank space, the form creator inserts a text field. Even for table cells that have text in them, if there's any white space, presto, here comes a text field inserted into that very cell, usually named after the text already in the cell. Is there any way to avoid this?

    Which version of Acrobat do you have? If X, then there should be an option
    in your Excel to Mail Merge the spreadsheet, which is basically what you
    describe. However, I'm not sure if it can also automatically email the
    files to the recipients.
    I have developed a script that can do the merge, *and *automatically email
    the file to each person. Have a look here for more info:
    http://try67.blogspot.com/2011/09/acrobat-mail-merge-and-email.html

  • Create form from WORD requires administrator

    I am logged in as administrator, yet Acrobat tells me I have to contact my administrator to convert a WORD document to PDF form.

    Hi ,
    I would like to know who is the creator of this form that you are trying to convert.It could be possible that it is referring to the creator as administrator who has the rights to convert the form.
    This could be something linked to the security of the form.
    Regards
    Sukrit Dhingra

Maybe you are looking for

  • Concerns w/ MSI fx5600XT 256 Card

    I am looking for a video card to go with my    New MSI kt6 deltaLSR mobo w/ 2500 barton chip I have 1 GIG of samsung  (512x2) PC3200 400MHz Dual Channel DDR sdram    waiting for the Mobo to arrive   I have 2 concerns about what was a soon to be purch

  • Will not display pdf in browser window -

    will not display downloaded acrobat files from the web in browser window - safari - can save same download and view in acrobat and/or preview.

  • HT4113 how do i unlock my for gotten password

    how do i unlock my ipod forgot password

  • How to use request variables rather than session variables

    Are there any good examples? , I am constantly adding too many session variables in the fear they will get 'crossed over'. Like when you spawn new windows. how to refresh a page when the variable was passed on the URL.? A guide with all the varible p

  • Can I make IE 6 to display a transparent background?

    I have a sidebar that has a hand painted background. On this background I have buttons with writing. These buttons are .png with a transparent background. In every browser that I tested the background of the button remains transparent and blends nice