Form Question

Hi Everyone,
I'm first creating a form in Microsoft word before I put it into an Adobe form but, I need help. I want users to be able to fill in the text boxes & check boxes but, I also want them to be able to copy and paste text or pictures (into two different sections). I can get the text boxes and check boxes to work but, not the copy and paste. Any suggestions?
Your help is appreciated.
Matt

Hi Gilad,
I've actually decided to keep it a word document but, I still have the same issue. I want users to only be able to type into designated text boxes, check boxes etc. but, there are two sections of the form where I would like the user to be able to copy and paste pictures. Once I protect the form it does not allow users to paste pictures into those sections so I'm looking for a way to maybe protect certain fields and allow copy and pasting into other sections. Does that make sense?
Thanks,
Matt

Similar Messages

  • Master-Detail Form Questions

    Master-Detail Form Questions
    I have two questions in regards to master-detail forms:
    First, the form I am working on has 25 detail rows displayed to the user. If the user has more than 25 detail records for the master, I want them to be able to add more. For instance, after they enter the 25th record, I would like a pop up window to ask them if they would like to add more detail records for this master. If they select yes, then the records they have entered would be saved and then the form would repopulate with the current master record and another empty 25 detail records.
    Second, I would like the Detail Action to be set to Insert if the user moves to a new detail row and selects an item from a combo box.
    Thanks for any and all help.
    Jeremy.

    Hi Sharmila.
    Is there a way to repopulate only the Master information without populating the detail after the 'Save' button is pressed? I have written code that uses the session variables and repopulates the form with all the data that has just been saved, but I need only the master without the detail.
    Thanks.

  • Object class deployment - Basic form question

    OK, I subclass calendar object from Oracle provided standard
    object class. What do I need to deploy to use this form now
    apart from calendar.pll and my fmx. What about the object class
    from which I sub-class. Do I need to compile and deploy that
    also? How will form resolve this on run time the parent object
    class as I really did not copy, just sub class and we do not
    deploy original class? Basic form question. Thanks.

    You can set the "help" property on the field (which gives you the little "information" icon link beside the field).
    You could also try adding another field of another class above or below:
    <Display class='InlineAlert'/>
    <Display class='ErrorMessage'/>
    <Display class='HtmlPage'/>
    ..etc
    -Rob

  • How do I add a Handwritten Signature to my form? And other Form Questions

    Hi there,
    I'm making a form for parents who's kids are going to drive a motorcycle for the first time.
    Now I want to use my laptop with touchscreen for people to fill it in.
    the normal boxes (name, adres etc) with keyboard.
    But the important part is the SIGNATURE which has to be handwritten.
    It's for insurance and legal autorisation from the parents that the kid is allowed to drive and they know the risks and rules.
    How do I add a box in which parents can sign.
    Or is there another solution to make it legal?
    Another question now I might have someones attention:
    After a parent is done filling the form and presses OK or DONE
    Is there a way a parent can choose to use a new blank form or the same form again without date of birth/name/sex
    so he/she can fill the forms faster for the rest of the kids?
    OR
    Is it possible to let a parents say I have 4 kids (with a choice menu)
    and the parent wil get 4 name/age/sex openings and the rest of the form will stay the same?
    And
    Is it possible to export the whole bunch into a excel for easy usage
    Thanks in advance
    and all tips are welcome!
    Love
    Kim

    Just to share some info for this:
    I used to do this sort of thing quite a bit.  What I used was a scanner to scan my hand written signature to an image file.  I would then paste the image file, which supported transparency, over the signature line.  More recently, I used Photoshop to draw a signature saving in a transparent image file.
    Just to warn you though:  you are asking for legal advice, and you are not going to get that here.  I would consult with an attorney to find out exactly what is legal.

  • Mail Form Question

    Hi Folks,
    I'm VERY new to Dreamweaver, have just created a Mail Form in
    PHP and have absolutely no idea what to do with it now. It's one of
    those typical forms with To:/Email:/Message: I know this is a
    painfully basic question but I can't seem to find the answer in
    books, training videos, my hosting provider, etc. I know I need a
    URL to "point" the file to on the server but my internet host had
    no idea what I was talking about.
    If anyone could help it would be greatly appreciated!!
    Thanks, Cynthia

    you can use php on this hosting?
    I'd suggest using the phpformmail script.
    here's my stock cut 'n paste on what to set to what, and why
    1)go to
    http://boaddrink.com
    -->phpformmail
    download it.
    extract the ZIP file.
    More detailed instructions are in the docs folder
    2) open formmail.php in dreamweaver
    Make the following changes (in code view, turn line numbers
    on)
    2a)
    line 4,
    define('CHECK_REFERER', true);
    change to:
    define('CHECK_REFERER', false);
    reason: too many people use a firewall or Norton security to
    restrict this.
    2b)
    Line 43
    $referers = array('www.example.com', 'example.com');
    change to the domain name of your web site.
    reason: this probably isn't needed since we just turned the
    referrer
    checking off. but change it anyway.
    2c)  *this is to hard-code the recipient address into
    the php
    file, where it is totally invisible *
    Line 46
    $recipient_array = array();
    change to:
    $recipient_array = array('me' =>
    '[email protected]');
    **of course, replace [email protected]  with
    the email address
    you want to receive the form data. Also note the single quote
    marks.
    reason: this sets the email address the form results will be
    sent to.
    You can also make a list of possible recipient alias values-
    see the readme
    in the docs folder.
    2d) give the script a default "From" address to use.
    Go to line 41
    Change:
    define('FROM', null);
    to:
    define('FROM', 'Example Name <[email protected]>');
    substituting your name and email address.
    3) now do a File-->Save As and save this file to within
    this Local Site
    folder. save it as anythingyouwant.php
    4) in dw's File Panel, find anythingyouwant.php and upload it
    to the remote
    site.
    5) Now open your form html file in dreamweaver,
    5a)click the mouse into the form area, and select the
    <form> tag on the
    lower left margin of the design window.
    In the Property Inspector, it should now show the properties
    of the <form>
    tag. In the Property Inspector, to the right of the ACTION
    line, click the
    folder icon and browse to and select the anythingyouwant.php
    file
    you've saved to within this site.
    5b) now click within the form area and go to dw
    menu-->Insert-->Form
    Objects-->Hidden Field
    This inserts a hidden form field.
    In the property inspector, change the NAME/ID of this field
    to: recipient
    And the VALUE of this field to: me
    the code should look like:
    <input name="recipient" type="hidden" id="recipient"
    value="me">
    This tells the script to use the "me" recipient_alias value
    as the email
    address to send the form to.
    5c: Do you have a form field to collect the user's email
    address?
    If yes, if this field is named exactly "email" then the
    script will use the
    user's email as the reply to in the outgoing email
    6) Save and upload the form page.
    Try the form from the website.
    Optional:
    1-make a new page for a thank you for submitting message.
    In the form, insert another hidden field.
    Name: redirect
    Value:  the full absolute
    http:// address to the new thank you page.
    If you don't set a redirect value- the form script will build
    a "thank you,
    here is what you submitted" page. If you want to use that
    dynamic page-
    upload the .css file that it uses.
    2- If you have a field in the form to collect the visitor's
    email address,
    IF you name this field  in the form exactly  
     email   then the visitor's
    email address will be the Reply To address in the outgoing
    email.
    There are 30 or so other optional form fields to control the
    form- see the
    readme in the docs folder. One of those optional control
    fields is
    verification.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • More forms questions, cannot get form to align

    I tried the methods suggested here and at various sites, but could be missing something.
    I cannot get the form to drop into my template. I created one at wufoo and one a freeback, published my site to a folder, then edited the page in textedit by search for my "formcode" word with the html.
    The problem is the form posts at the top of the file and not on the actual page.
    Any ideas why?

    Thanks folks, I went ahead and bought iweb enhancer and it worked where my efforts failed. Very good program and very reasonable price as well.
    Chad, the developer, is amazingly fast with replies to questions and with good advice.
    I can still post the code if you are curious. I really thought I followed your instructions and still could not get it to work.
    thanks again for your replies.

  • Designer 7x Forms Question

    I'm not sure if this question has been asked or not, so here goes.
    I have a list box with 50 different items in it. Depending on the item selected by my user, I want an associated interactive PDF form to be retrieved. I've set up a master page in Designer and have identified a subform (although I'm not sure if that's necessary) and have saved this file as a template.
    I could take the "easy" route of just having bookmarks of all 50 PDF forms but I want to make it work "slick."
    I've been searching through every bit of documentation available trying to see if this is even possible.
    If there's an answer, please keep it as simple as possible. While not completely new to Designer, I'm not a programmer and if this is something that's going to require java scripting then I'm lost.
    Thanks!
    Barb

    Hi Barbara,
    Unfortunately what you want to do will require that you write some java script.
    I have put together a sample with a list box that contains three files. To get the sample to work select the list box, click on the object tab and then on the binding sub-tab. Change the Value of all three Items to point to a different PDF files on your system.
    If you then open the sample in acrobat and select a item from the list the associated PDF will be opened.
    The files are opened by the following line of javascript which was added to the change event of the list box.
    app.openDoc(xfa.form.form1.ListBox1.boundItem(xfa.event.newText));
    The xfa.event.newText returns the text of the selected item.
    The xfa.form.form1.ListBox1.boundItem(xfa.event.newText) returns the value associated with the selected item which is the absolute path of the PDF file to be open.
    The app.openDoc(...) opens the file specified.
    Hope this helps
    Denver
    Adobe Enterprise Developer Support

  • Fillable forms question - FrameMaker to PDF - Without losing copy protection options

    Hello,
    I'm looking for a solution that will allow us to integrate fields in a Chapter Review-style question area where users can comment their answers (instead of using StickyNotes). It must disallow printing/copying etc to meet content protection requirements. I've dug through all of my options and can't seem to find any viable method without allowing the "Edit Content" option which allows users to copy the content.
    We're currently using FrameMaker 9 but will be jumping to TCS5 soon.
    As an example, we would want something like the following question, which exists in a FrameMaker document, to be commented on:
    2. Which DID/DNIS mapping is recommended for mapping a single extension?
    Thank you in advance for any assistance with this.

    > It must disallow printing/copying etc to meet content protection requirements.
    ebook format copy protection is largely an illusion. Leaving aside the availability of euphemistically named "password recovery" software, the widespread availability of low-cost (often bundled free) OCR software means: If you can see it, you can recover the text, unless it's heavily CAPTCHA'd.
    Even if the user is blocked from reading the computer's frame buffer (i.e., prevented from using the PrintScreen key on Windows), most cell phones now have cameras with more than sufficient resolution for full text recovery. Some users even know how to turn off the flash .
    If the supposedly eyes-only document is available on the web, I would not be the least bit surprised to learn that one or more search engines has already OCR'd and indexed every word in it (you can be sure that the NSA's has).
    Managers asking for copy protection need to realize that they are making the authoring task much harder for little benefit, and often creating pointless annoyance for end users. Copy protection might briefly deter casual copiers, but is no obstacle at all to anyone the least bit tech savvy.
    If copy prevention really matters, each copy of the document needs to be computer-generated for the specific licensed end user, with user-customized, easily traced content.
    All that aside, and assuming management can't be dissuaded on the copy protection issue, does TimeSavers support insertion of form fields while preserving security settings?

  • Acrobat Forms Question

    Hi there,
    Quick question on forms, I created some forms in Acrobat, but when the user fills them out, they can't save and email them, it doesn't let them, how do I remove this protection?
    Thanks!

    Acrobat 7.0.9 also lets your users reply to forms with User Rights Enabled (albeit a bit more work in the process in Acrobat 7.0.9 than in 8 ). But it works.

  • Forms question  about exceptions

    Hello,
    I am a newbie and hence my question may find very basic, please help me.
    I have a Pl/sql code where I am executing a queryand if the query doesn't retrieve any values I need to show a message.
    My code is something like this:
    select id from table into tmpid where id=:val_id
    some code here
    CALL_form(url);
    If the query fails I need to show a message, how can I do this. Forgive me for my knowledge in forms, as I am a newbie.
    Thanks in advance.
    Newbie

    Declare
      Found1  varchar2(1);
    Begin
      ...whatever code you need here...
      begin
        select 'Y' into Found1
          from table where id=:val_id;
        exception when no_data_found then null;
      end;
      If Found1 is null then
        Message('No can do!!!');
        Raise form_trigger_failure;
      End if;
      ...some code here...
      Call_form(url);
    End;

  • Forms question - Error validation

    Gurus,
    I have a question .. Please suggest me a suitable answer .. I am using forms 6i, in which i have created a data block (which isnt associated with a table or any procedure), in which i have 3 items, custno (customer number), custname (customer name), toknno (token no)..Its a multi record block (displaying 10 records at a time) ..
    Now when i enter value 1 in custno, ABC in custname, A1 in toknno items, and when i move to the next custno text item, if i once again enter 1 in the custno text item, immediately it should display a message stating that "value has been entered already" ... it should happen only for custno ...
    One important thing is, i amnt saving changes to database .. I amnt marking the text item as a unique key (without marking as unique key in the property sheet), i should get the solution
    Can any guru help me
    Regards

    Hi Here is the code...
    May be it will be useful..
    When-New-Form-Instance
    DECLARE
                rg_name  VARCHAR2(40) := 'RG_EMP';
                rg_id    RecordGroup;
                gc_id    GroupColumn;
                errcode  NUMBER;
    BEGIN
                rg_id := Find_Group(rg_name);
                IF Id_Null(rg_id) THEN
                            rg_id := Create_Group(rg_name);
                            gc_id := Add_Group_Column(rg_id, 'EMP_NO', NUMBER_COLUMN);
                END IF;
                errcode := Populate_Group_With_Query( rg_id,'SELECT EMPNO FROM EMPLOYEE ORDER BY 1');
    END;    
    When-validate-Record
    DECLARE
                rg_name  VARCHAR2(40) := 'RG_EMP';
                rg_id    RecordGroup;
                gc_id    GroupColumn;
                errcode  NUMBER;
                the_rowcount NUMBER;
                V_VAL              NUMBER;
    BEGIN
               MESSAGE(' ');
                rg_id := Find_Group(rg_name);
                IF Id_Null(rg_id) THEN
                            --MESSAGE('rg not exist');MESSAGE(' ');
                            rg_id := Create_Group(rg_name);
                            gc_id := Add_Group_Column(rg_id, 'EMP_NO', NUMBER_COLUMN);
                            Add_Group_Row( rg_id, END_OF_GROUP );
                            Set_Group_Number_Cell( gc_id, 1, :EMPNO);
                ELSE
                            the_rowcount := Get_Group_Row_Count( rg_id );
                            --MESSAGE('record count'||the_rowcount);MESSAGE(' ');
                            IF the_rowcount > 0 THEN
                                        FOR I IN 1..the_rowcount
                                        LOOP
                                                    V_VAL := Get_Group_Number_Cell( 'RG_EMP.EMP_NO', I );
                                                    IF V_VAL = :PARAMETER.P_EMPNO THEN
                                                                MESSAGE('DUPLICATE RECORD');MESSAGE(' ');
                                                                RAISE FORM_TRIGGER_FAILURE;
                                                    END IF;
                                        END LOOP;     
                                        Add_Group_Row( rg_id, END_OF_GROUP );
                                        Set_Group_Number_Cell( 'RG_EMP.EMP_NO', the_rowcount+1 , :EMPNO);
                            ELSE   
                                        Add_Group_Row( rg_id, END_OF_GROUP );
                                        Set_Group_Number_Cell( gc_id, 1, :EMPNO);
                            END IF;
                END IF;
    END;     Check it.....
    One more thing is U need to check that Column data type .whenvever u r adding a column in Add group column check whether is it number_column and char_column like wise u should give and Same as in Get_group_number_cell and set_group_number_cell .

  • Enrollment form question

    Hi,
    I have a quick question (or maybe) two about sending enrollment form. Do I have to wait for enrollment form to be accepted, before submitting application ? I've read already in some other post that I do not have to, is that right ? As far as I understand, the enrollment form will be needed only in case, when total value of all sold copies exceeds 100$, right ? And finally, what about Intel AppUp, does it work the same way as for Marketplace ?
    Thanks for any clarification and answers to these questions!
    best regards
    Mateusz

    Hi Mateusz,
    Enrollment form is not required for free application. If you are submitting a paid application, you can submit your enrollment form after publishing the application. You need to ensure that you have submitted the enrollment form in order to get paid for your application that you distribute through AIR Marketplace or through your own website.
    Both Intel's and AIR Marketplace's payment policies are covered in the InMarket documentation: http://learn.adobe.com/wiki/display/InMarket/07+Settlement+and+Payment
    I would highly recommend you to go through it as it covers detailed answers to all your questions.
    Let me know if you have any further questions.

  • Oracle Developer/Forms Question

    Hi All,
    My company needs to install Oracle forms. I am a DBA, so I have no experience with forms. I was hoping someone could answer come questions for me.
    I downloaded some Client Install instructions for Forms. They seem pretty straight forward.
    However, since we will want to be sharing these forms and have everyone in the comany use them, I assume I need to install some server component. I have no clue where to look. I was told that I need to install iAS? I have no clue on what that is.
    So, I'm looking for someone to help me out with what I'll need so the developers can work on their stuff, and then the users can use the forms, etc.
    Any help would be appreciated.
    Thanks,
    Arthur

    First of all you should post this question on the Forms forum - http://forums.oracle.com/forums/index.jsp?cat=19
    Second, go to http://www.oracle.com/technology/products/forms where you can get all the information you need about running forms on the Web.

  • Manually tabular form question

    hi all
    i built a manually tabular form.
    i want that this tabular for will used only to update , and without the option of insert new row .
    two questions i have here according to the document :
    there is something called
    Adding Optimistic Lockingoptimistic locking
    is that possible to do it if it's only an update form?
    i've tried to do it and not really succeeded.
    second question is about collection
    again is this possible to do it if i built only an update form ?
    thanks for quick response

    Hi Naama,
    >> i've created the package , it's show like it done but then i cannot see it.what seems to be the problem ?
    I have no idea, but this is definitely something local in your database. Just drop the package and re-create it. If the Object Browser doesn’t show you the package, try to use SQL*Plus.
    >> what is the meaning of this package?
    is this package active only in the tabular manually form ?.
    This is a regular PL/SQL package, and with the proper privileges, can be used anywhere on the database, with or without APEX connection.
    This package is “special” because it’s includes all you need to manage Optimistic Locking, which is characteristic to Web based applications. Other than that, you can use it whenever you need to manipulate the related table(s).
    >> the apex know in which part to relate in the package right ?
    APEX don’t know anything. When you are building a manual tabular form, it is also your responsibility to construct the proper DML processes. If you want your tabular form to support insert/update/delete you’ll need to construct three processes, each with the proper DML statement, each condition by the proper button. In your private case, as you need to support update only, you’ll need to build only one DML process (PL/SQL anonymous block), which will call the proper update procedure from the package.
    >> thank you
    Naama
    Wow! You signed your name correctly :) You should amend your handle to reflect that.
    Best Regards,
    Arie.

  • Outlook Forms question from a business analyst

    I'm not a developer but I would like to use a custom form at an enterprise level. Ideally, we would like to put a "mailto" link in a number of strategic places on our intranet and have that link open a custom form that is prepopulated to go to
    a particular mailbox.
    The form I created uses 4 regions (ideally I would like to display them as tabs... but that's another question)
    A person in our IT said that regions can't be shared at an enterprise level like that. Can someone confirm that and is it that difficult to accomplish what I'm suggesting with basic Outlook features?
    Suggestions?

    web.show_document will never work with 4.5, it wasn't introduced till 9i.
    You need to use the HOST command to invoke the browser, like suggested in the above post. Or you create a batch file that does that and you execute the batch file with HOST command.
    In case you use a batch file, the .bat file should exist on each of the client's machine or on a shared network drive where the client machine can access it, so it's better to use the command directly into the HOST built-in.
    HOST('"C:\Program Files\Internet Explorer\iexplore.exe" www.google.com', NO_PROMPT, NO_SCREEN)
    batchfile content:
    "C:\Program Files\Internet Explorer\iexplore.exe" www.google.com
    HOST('OPEN_BROWSER.bat', NO_PROMPT, NO_SCREEN)For more information on HOST check the Forms builder Help files.
    Tony
    Edited by: Tony Garabedian on Sep 11, 2008 4:06 PM

  • A FORMS question please.

    Apologies if this question doesnt come in this forum.
    I have Oracle Forms 9i,and have 5 field displayed horizontally.
    When I tab,the cursor goes from Field1,Field2,Field4,Field5.
    It skips Field3.
    What do i need to modify in the property pallette of FIELD3,
    so that the cursor comes on this too
    Thanks

    If memory serves there's a Navigable property.
    For future reference there is a Forms forum, which you'll find Forms.
    Cheers, APC

Maybe you are looking for

  • Internal error Occured mapping can not be opened - while opening interface

    Hi Gurus, I Am using ODI 11g to load data from Oracel to Oracel database using different schemas as a source to load facts. for the first time its loading sucessfully and when i try to open the same interface to see the mapping its showing the errror

  • Cp2025n color laserjet manual duplexing side two portrait & landscape transition issue

    I regularly print the same documents. Each document has a portrait section, a landscape section, a portrait section then a landscape section, then a portrait section. I manually duplex the job (because I did not buy a duplexer and I am saving trees).

  • Reciever JMS Adpater Error

    Hi Experts, I am getting following error in Reciever JMS adapter: I am using transport protocol is Acces JMS provider with JNDI Channel error occurred; detailed error description: com.sap.aii.adapter.jms.api.connector.ConnectorException: Error creati

  • Why doesn't Final Cut Pro X update songs from Garageband?

    While working on a short film in Final Cut Pro X, I worked up a simple sound track in Garageband. I imported the Garageband project, aligned it, and discovered that I'd mistimed one of the sound transitions. So, I went back to Garageband and updated

  • SMTP for GMAIL

    We recently switched from our old mail server to GMAIL, and all of my scheduled Crystal Reports died.  Can anyone, PLEASE, tell me what I need to put in the Email (SMTP) Destination fields to make it work again?  I have been getting an SMTP_E_TCPSOCK