Creating form so user can add fields if needed

I am trying to find out if you make a form with a field, is there a way to initially create the form so that when a user is filling it out and they need another line (i.e., there is a section for children -- but you only have one field)  can you create the form so that the user can just enter or hit a down errow to add another field if needed?  I don't want the form to have extra lines (fields) in it if they will not usually be needed by a user -- but can be added on their end.  Hope this makes sense.
Thanks

This sounds like something that our skip logic may be able to help you with.  You could, for example, have  a field that asks how many family members.  Based on the answer you would display the number of Name fields.

Similar Messages

  • Need to create form that user can fill out and SAVE in Reader

    Hi,
    My form, which of course works fine in Adobe Acrobat 4 CS4, is unsaveable when typed into with Acrobat Reader. It says at the top:
    "Please fill out the following form. You cannot save data typed into this form. Please print your completed form if you would like a copy for your records."
    *I know it's possible* to make it writable/saveable for Readers users, because I have here a form that someone else created, and in Reader the message says, "Please fill out the following form. You can save data typed into this form."
    What setting do I need to change in Acrobat to make it saveable in Reader? Document attached.
    Thank you in advance!!!!

    WelltechSolutions wrote:
    Phillip,
    Thank you for the clarification.
    I cannot seem to find the post that mentioned that this could not be done; perhaps it was for an older version of Acrobat. If I find it, I'll send you the URL.
    This is a form that will reside on a web site for download, and the forms are used by individuals to track exercise as part of a community nonprofit wellness program. I doubt 500 folks will use it. We can monitor downloads.
    If we need to go above 500 downloads, how would we go about purchasing a license for additional use? And, is there a chance that Adobe will increase this limit for a purpose that is non-commercial and non-profit?
    Thanks.
    I don't know the answers to the question about license for additional use, nor would Adobe increase the limit. I  among other that were associated with Non-profits (I was treasury for an Electronics Association for 17 years) were the reason for adobe doing this to begin with. Before Acrobat 8, you had to use the other methods mentioned (The LiveCycle Server).

  • How to create a form so users can add an attachment

    Had a form that was working fine untill I added places for attachments (using Dreamweaver CS5).
    Now when I try to submit the form I get an error message of "Bad/No Recipient."
    Page at http://www.minster.com/rfq/test.html
    Thanks for any suggestions.

    This PHP form-to-email script supports attachments and a whole lot more.
    http://dbmasters.net/index.php?id=4
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/
    http://twitter.com/altweb

  • Creating form document that stores certain fields in a local database

    Hey guys, here is what I am trying to do :
    We have these credit form that we use at my company that are used to request bank and trades references
    What I would like to do is create  name/adress/fax number in a standard form, that actually keeps the data somewhere and creates us a trade/bank database
    so let's say some other client has the same trade reference, our user can just type in the name of the trade (lets say TRIBAL) and the info comes up automatically (adress/fax)
    I know I might not be really clear in my explanations but i'm trying
    Can this be done?

    Hi,
    You mean the marketers list has to be preloaded when the page loads itself the very first time. For this to work, you need to make a jdbc call before the page loads and set the marketers list in the request or session.
    For eg in your jsp where you want to display the marketers name dropdown, you can add,
    <%
    try {
      // Load the DB2(R) Universal JDBC Driver with DriverManager
      Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    } catch (ClassNotFoundException e) {
         e.printStackTrace();
    Connection conn = DriverManager.getConnection
      "jdbc:oracle:oci:@myhost:1521:inst1", "scott", "tiger);
    Statement stmt = conn.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_READ_ONLY);
    ResultSet rs = stmt.executeQuery("Select mktr_id, mktr_name from MARKETERS");
    int iCount = 0;
    rs.last();
    iCount = rs.getRow();
    rs.beforeFirst();
    String [][] mktrs = null;
    mktrs = new String[iCount];
    while( rs.next() )
       i++;
      // retrieve column data
      // do something with it
          mktrs[i] = new String[2];
          mktrs[0] = rs.getString(1);
    mktrs[i][1] = rs.getString(2);
    if( iCount == 0 )
    System.out.println(
    "myResultSet returned no data.");
    %>
    Now you can use the mktrs string array to populate the ropdown as described earlier.
    Cheers,
    vidyut

  • Problem with a table that user can add rows to

    I have a form that has a table with header.  I have included a button that users can click to add rows to the table.  I have gotten a few forms back where for some reason the header row has been repeated.  I haven't been able to recreate this on my end and my users can't identify exactly what they are doing to get those extra header rows.  I have included screen shots of the problem pages here.  I would love to upload the form since I believe my issue is with the script, but can't seem to do that.  I'm signed in to adobe.com, but when I go to new and documents and upload a file, everything is greyed out.  Am I missing something that would enable me to upload the document? Specific instructions would be appreciated.
    Thanks!

    Hi,
    For both/all tables the HeaderRow should not be set to repeat (see the Object > Binding palette). Go to the HeaderRow in the hierarchy (for each table) and untick the "Repeat Row.."
    That should solve the problem.
    Niall

  • Is there a way to embed a document in a FormsCentral form that users can download?

    I want users (i.e., people submitting a form) to be able to download a document.  Is there a way to embed a document in a FormsCentral online form?

    You can't embed it directly. You could put the document on your website then create a hyperlink on the FormsCentral form to your document.
    Randy

  • How to create a login page for my client and a form so he can add/edit or delete information ?

    I have a real state client and one of the pages is to show all the houses he is selling with their information.
    And he wants to have a login page so that only him have permission to add, edit or delete a house from his web page.
    Also when adding a new house i want to have a form(kinda like craigslist, ebay,amazon) so he can chose type of house,price,adress,  floor, used , new, etc...?
    I hope i was specif enough.
    thanks

    If this was me, I would just create a log in page. Set the users default access level to 0 and then go into the database and set your's to 1. From there, I would have a page that only is accessable to people with a user access level > 0 .
    On this second page, make a table where you can insert picture(s) of the house, as well as information about the house. Have this page insert records into a database.
    Finally, you will have your house listing on a page that is a dynamic table, which populates itself from the database of housing pictures and information.
    It involves some database work, but with the built in functions of Dreamweaver, it is simple. I would suggest however, that you store links to the pictures in your database as opposed to storing the actual picture, but that's more up to you.
    By doing all this, you have made it so at any time, your admin, and only the admin, can log in, upload pictures and information about a listing, and have it go live to the site.

  • Create a form that user can fill online, print and not save.

    I have form that I want user to fill out. I want them to send it via email or print and not save the information that was typed into it.
    Where or how do you put that type of security?
    Thank you!
    Jim Z

    through adobe policy server you can give only online access to the document(means that document will not be opened unless user is authenticated with the policy server) and assign policy to user to restrict him only printing and filling in form fields.
    Also you can revoke that document after sometime.

  • How do I create forms that people can complete in more than one sitting i.e. save and submit?

    Hi,
    I have just bought formscentral and need advice to achieve my objectives:
    Required:
    Customer can part fill form, save and complete later on and submit for us to capture the data.
    Customer can save or can access their completed form, as we need them to print it out, and physically sign a version for us for legal reasons
    Several different people within the customer's business need to fill out different areas of the form, so they may need to e-mail the form bwtween each other or each logon and complete their section.
    Are the above achievable? If so can I do as a web form or pdf? Are there any settings I need to apply to the form before or during creation? Are there only certain methods of distribution that will work?
    Other concerns:
    Our end customers are small traders that are not that computer literate and I worry that they won't have the latest adobe reader or the form won't be compatible with their Mac or firewalls etc and will struggle to be able to fill out, save and submit the forms for technical reasons. Are these concerns justified? If so, are there ways to minimise these issues?
    Any guidance is much appreciated. The package also mentions it includes one to one support from Adobe - how do I access this support?
    Thank you,
    Rob

    If a requirement is that the form be passed around to several users, I think that the PDF option is your only hope. It will indeed be a problem if users don't have Reader or some other forms-capable PDF viewer. You don't have to do anything special apart from enabling it with FormsCentral. This allows users with Reader versions prior to 11 to save the filled-in form. You'll just have to try to educate the users to use Reader (and NOT to use Preview on a Mac).

  • Creating form with user uploaded image (not attachment)

    Is it possible to create a form with a space for user uploaded image?  Not attachment.
    Thank You

    This is not supported by FormsCentral.
    Jeff Canepa
    Software Quality Engineer
    Adobe Systems, Inc.
    [email protected]

  • If the iOS app I create emails the user, can the user upgrade from the link in the email or is that against the guidelines?

    I want to create an iOS app and for a variety of reasons (subscription, multiplatform, etc) I can't use the Apple app-store payment sytem. 
    However, if the user creates and account with my iOS app and we then email the user at a later date.  Can they upgrade from the link in the email, or is that against Apple policy as well? 
    Thanks!
    Ryan

    i am faceing a file download problem too..........
    i am protecting jboss application,,,,using apache, and jk....
    all work fine except for open a file(word,excel,txt,etc).
    Disable the policy domain, everything goes just fine. microsoft file dialogue opens,you can open the file directly, or save it to your computer........
    Enable the policy domain,, you can only save the file to your computer(file content is also correct),,,but cannot open it directly.it says the file path could not be found......but if the word/excel application is already running, you can open it fine...
    PS:not a computer issue,,,every computers faceing the same problem
    any avoice from you is good to me...............thanks very much

  • What are all the ways that can add fields in the output list of FBL3N transaction?

    Hello dear experts,
    There is this transaction FBL3N, which you might be aware of. Now, the requirement is to add 4 new fields in the output list of the standard program.
    The fields are:
    NAME1   KNA1
    LOKKT    BSEG
    USNAM   BKPF
    TXT50      SKA1 -> SKAT
    Please tell me how to do this apart from implementing the note 310886. What are the other ways?

    I agree, start reading 984305 - Line item: Definition of special fields (T021S)
    Then for non BSEG/BKPF fields, better use BAdI FI_ITEMS_CH_DATA (1323512) and not the good old BTE 1650, the BAdI will be called once with the full internal table with special fields already filled, when the BTE will be executed for each and every record without special fields, so harder to optimize, and may require access to BKPF/BSEG for missing fields.
    Regards,
    Raymond
    PS: Did you use search tool, there are already many discussions/threads on this subject.

  • How can i extended attribute of user and add attribute to ldap

    how can i extended attribute of user and add attribute to ldap
    1.
    i use spe to modified "Default User Library":add Field like
    title:nation name:accounts[Lighthouse].nation
    2.
    modified "IDM Schema Configuration"
    add <IDMAttributeConfiguration name='nation' description='default attribute from UserExtendedAttributes/UserUIConfig' syntax='STRING'/>
    in <IDMAttributeConfigurations>
    and
    add <IDMObjectClassAttributeConfiguration name='nation' queryable='true' summary='true'/> in<IDMObjectClassConfiguration>
    there is extended attribute when i create new user
    3.
    i create new resource to ldap,and i add nation in "Account Attributes" tab
    but the new attribute not add to ldap
    i am beginner,how to extended attirbute add add to ldap attribute?

    So, if I want to fill in blanks on a form where I need to add more pages to fill history, what program do I need? In Adobe Reader, I can edit and fill in blanks, but I cannot duplicate more blank pages.

  • How can I get the number of computers that a specific user had add to domain?

    Greetings
    In Win Srv 2K8 I know how to increase\decrease the total number of computers that any user can add to domain.
    (http://support.microsoft.com/kb/243327/en-us)
    but there is any way to get the number of computer accounts that a user had add?
    thank you in advance

    Hi,
    Regarding your request, maybe we could use the 'ms-DS-CreatorSID' attribute to verify the computer number that a specific has joined to the domain. Please understand that for a
    computer account created by domain users, the account has 'ms-DS-CreatorSID' attribute to indicate the creator user. When a user adds a computer to the domain, a process enumerates the 'ms-DS-CreatorSID' attribute on every computer account in the domain and
    calculates if the sum exceeds the current quota for that user.
    The 'ms-DS-CreatorSID' and 'ms-DS-MachineAccountQuota' with default value 10 are also available in Windows Server 2008 AD DS.
    Note: The 'ms-DS-CreatorSID' attribute will be unset in the computer account that is pre-created in Active Directory Users and Computers MMC or joined by domain administrators.
    Auditing on the computers container should work for collecting information of joining computer into the domain.
    For details, please refer to the following similar thread.
    How to find computers joined by an user (ms-ds-creatorsid) using powershell
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/68db87d8-0890-4d23-af9f-4693ccc1074d/how-to-find-computers-joined-by-an-user-msdscreatorsid-using-powershell?forum=winserverpowershell
    Regards,
    Andy Qi
    Andy Qi
    TechNet Community Support

  • Can i let user to add new objects without any programmin​g requiremen​t??

    Hi,
    I am doing my final year project on wireless data acquisition & building
    automation. Simply just a computer which can control building equipments &
    receive the status.
    I want my program to be flexible so that when there are new equipments
    added to the building, the user can add those equipments control in the
    computer side software. (I expect the user don't know how to user labview
    for programming). For example, if a water pump is added in the building, the
    user can just add a new control for that water pump by just click on a few
    buttons and set the equipments address.
    Any suggestion??
    Best regards
    Calvin

    Hi Calvin
    The only way I know of generating controls/indicators like that is using an
    array of controls (or an array of clusters, each clusterr containing a set of
    controls), and dynamically changing the number of elements in the array. You
    can then set some of the attribute node properties such as the index that is
    visible at the top left of the array control, and the number of rows/columns
    that are visible. However, it means that each new control set you create has
    to be the same as all the others (because it is an array).
    Paul
    Research Assistant
    School of Physiotherapy, Curtin University of Technology
    Selby Street, Shenton Park, Western Australia, Australia. 6008
    email: [email protected]
    Tel. +61 8 9266 4657 Fax. +61 8 9266 3699
    "Everyone who c
    alls on the name of the Lord will be saved." Romans 10:12
    "For all have sinned and fall short of the glory of God, and are justified
    freely by his grace through the redemption that came by Christ Jesus." Romans
    3:23-4
    Calvin wrote:
    > Hi,
    > I am doing my final year project on wireless data acquisition & building
    > automation. Simply just a computer which can control building equipments &
    > receive the status.
    >
    > I want my program to be flexible so that when there are new equipments
    > added to the building, the user can add those equipments control in the
    > computer side software. (I expect the user don't know how to user labview
    > for programming). For example, if a water pump is added in the building, the
    > user can just add a new control for that water pump by just click on a few
    > buttons and set the equipments address.
    >
    > Any suggestion??
    >
    > Best regards
    > Calvin

Maybe you are looking for