Need Help Re: Forms Creation Make Text Appear or Disappear?

Hello,
I am assisting in the creation of a form that will be used by support personnel to send to clients.
I would like to know if it is possible to make a form where if the user clicks, let's say the check box, 3 or 4 sentences pre-defined are displayed.  If the box is not checked, I do not want those sentences displayed.  Thank you!

I would like to know if it is possible to make a form where if the user
clicks, let's say the check box, 3 or 4 sentences pre-defined are
displayed.  If the box is not checked, I do not want those sentences
displayed.  Thank you!
Yes, this is possible.

Similar Messages

  • All of my apps on my new ipad2 are not working. I had this iPad about 4 months and nothing bad has happened before this. I need help on how to make my apps stop crashing. All my built in apps are fine though.

    All of my apps on my new ipad2 are not working. I had this iPad about 4 months and nothing bad has happened before this. I need help on how to make my apps stop crashing. All my built in apps are fine though. WHATBCAN I DO TO MAKE MY APPS STOP CRASHING. I ALREADY TURNED IT OFF THEN ON AGAIN AN IT STILL CRASHES. HELPPP!!!!

    Try a reset. Hold the Sleep and Home button down for about 10 seconds until you see the Apple logo. Ignore the red slider.

  • I do need help. My little i-pod appears to have lost all visuals. when I connect it to the computer I can see what is there, but I can no longer play it or see the tiy screen. Does this mean it has died? or is there a way of resucitating the poor thing. m

    i do need help. My little i-pod appears to have lost all visuals. when I
    connect it to the computer I can see what is there, but I can no longer
    play it or see the tiy screen. Does this mean it has died? or is there a
    way of resucitating the poor thing.
    mk

    iPod Tutorials 
    iPod Manuals
    iPod Models

  • To make text inside inputText disappear on click

    Hi,
    I'm using jdev 11.1.1.6. How to make text inside inputText disappear on click by using af:clientListener ?

    Hi,
    Use clickEvent.getSource().setValue(""); instead of clickEvent.getSource().setSubmittedValue("");
    Following code works for me
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <af:inputText label="" id="it1" value="This text vanishes on click">
        <af:clientListener method="onClick" type="click"/>
      </af:inputText>
      <af:resource type="javascript">
        function onClick(clickEvent) {
           // clickEvent.getSource().setSubmittedValue('');
            clickEvent.getSource().setValue("");
      </af:resource>
    </jsp:root>

  • I need help in form 6i

    Good morning everyone,
    I need help please
    someone who has handled expiry of session in form 6i
    I am using a library called D2KWUTIL.PLL
    and triggers When-new-form-instance and When-timer-expired.
    The problem I have is that the screens flash forms text boxes, I realized that this is for the trigger When-timer-expired
    and believe that my timer every 1 second, the issue is to control the inaction and close all forms.
    Help me if you know another way to handle session expiration.
    thanks in advance.

    Andreas Weiden wrote:
    A way to do it in forms could be this:
    -Create a global containg the last time the user did an action.
    -Create a form-level WHEN-VALIDATE-ITEM-trigger an let it update that date. (If you want also other actions to be treated as "action", you might add additional triggers, like KEY-ENTQRY and KEY-EXEQRY,..)
    -Create a timer, whichs check if the last actiondate in the global is older than you want to allow.
    -Make sure that the timer fires as less often as possible.
    Personally, i would recommend to not do it that way, because when you "switch" to webforms some day, the timers can/will make problems.thanks for replying,
    may be more explanatory
    thanks

  • Need help in Overwriting result in text file

    Sorry, im new to Labview.
    My situation is
    this.
    I can store the name and the result and i have the index.
    Now
    I'm having a problem on overwriting result i had in text file.
    I
    give you an example.
    Now in my text file i have a name of a
    student and the result.
    i wan to overwrite the result of the
    student.(this is just an example.)
    can someone guide me please?
    really
    need help as this is my school project.
    Thanks!
    i'll attach my program i have done soon.

    you got the wrong idea.
    i do not want to replace the file to a new file.
    what i want was to edit the exsiting file if the same name appear twice.
    Example:
    in my text file i have already had the name of example Tom and result 80
    and now i input the same name and diff result.
    i wan was to overwrite the result. 
    my project was similar to this here is my attachment of my project
    Attachments:
    LOCATOR.vi ‏19 KB
    TESTCAR.txt ‏1 KB

  • How to make a button click make text appear elsewhere on the screen

    I have a map of the US and  each state has a rollover that changes the color of the state...what i  am trying to figure out is how to click on the state and have text  appear to the side of the US map and have that text stay up until the user clicks on another state. Any help will be greatly appreciated. Thanks

    Good... keep working at it... I was already preparing the following for you, but if you pursue your own solution you will learn more and become more comfortable with working with Flash.
    If you want to look at what I was going to offer to possibly streamline what you end up with, or just have trouble, here it is...
    Select one of your states and give it an instance name in the properties panel... let's say you pick Utah and you name the instance "utah"  For example sake, let's say you also do the same for Ohio (naming it "ohio").
    Create a dynamic textfield where you want the text to be displayed and assign it an instance name, let's say you name it... "stateInfo"
    Create a new layer for actionscript so that you can assign some code for teh states.  In that layer, in the frame where the states are, select the empty keyframe, open the Actions panel, and place all of the following code there...
    var utahInfo = "Whatever text you want to display when you click Utah";
    var ohioInfo = "Whatever text you want to display when you click Ohio";
    utah.addEventListener(MouseEvent.CLICK, showInfo); // assigns a listener to the button
    ohio.addEventListener(MouseEvent.CLICK, showInfo);
    // for the above you will do the same for the rest of the state buttons... they can all share the following event handler function because it uses their names to identify the text variable that will be assigned to the textfield
    function showInfo(evt:MouseEvent):void {
         stateInfo.text = this[evt.currentTarget.name+"Info"];

  • Need Help w/Form Component

    running SJSC2U1 on XP
    Need help with using the form and associated components to create a search functionality in a jspf page..
    I have used the form component and attempted to use the properties method="get" action="http://www.aaa.com/query.html" name="getit" etc...
    I am told (error msg) that these methods, etc. are not valid for the "form" component
    Does anyone now how to create a search functionality in a jspf page using components, be it "markup" layoutPanel, Form or whatever..
    a simple example (code) would be great.
    Thanks

    running SJSC2U1 on XP
    Need help with using the form and associated components to create a search functionality in a jspf page..
    I have used the form component and attempted to use the properties method="get" action="http://www.aaa.com/query.html" name="getit" etc...
    I am told (error msg) that these methods, etc. are not valid for the "form" component
    Does anyone now how to create a search functionality in a jspf page using components, be it "markup" layoutPanel, Form or whatever..
    a simple example (code) would be great.
    Thanks

  • Flash Professional Help | Embed fonts for consistent text appearance

    This question was posted in response to the following article: http://helpx.adobe.com/flash/using/embed-fonts-consistent-text-appearance.html

    How can I embed one font and use it for several text objects in the FLA?

  • Need help with form calculations

    I'm converting a non-editable PDF form into an editable one and could use some help as I'm am new to this. Note: I did not create the non-editable form, It's a form I downloaded and use in my business.
    I already figured out how to create text fields in the already created PDF non-editable form, now I'm trying to add in calculations. I can create the (value is the) calculations between 2 or more text fields, but now I need to multiply one text field by the number 3 and have the answer show up in another text field.
    Example:
    I'll use the letters A & B for the text filed names in my example.
    I have text field A calculating the sum of other text fields using the (value is the sum of) option under the (calculate properties box.)
    Now I want text field B to multiply text field A by a fixed number of 3.  (A=24) x 3=72. I need text field B to have the answer of 72 in it.
    I need text field B to always multiply text field A by 3.
    Does anyone know how I can accomplish this?
    I'm using Adobe 8 Pro.
    Please note that I have no experiance using custom calculation script if that is the only way this will work and will step by step instruction on how to write the code.
    Thank you very much.

    You can use the simplified field notation option. In this case, you'd enter:
    3 * A
    Where "A" the the exact name of the A field. It is best to avoid spaces and any other special characters for any fields that you'll want to include when using simplified field notation option.

  • Noob needs help with site creation -- interactive?

    I want to make a site where people can post and/or reply to other posts.
    I've used iWeb for a couple years so I'm good with "static" sites but how can I make one where people can post to the site themselves?
    For example, I write ::"what is your favorite rum when making a hurricane":: and a list of users/responses follows?
    Is that even possible?
    I'm using iWeb '09.
    Thanks,
    Jay

    Jay ~ Welcome to the discussions. You could link to a free forum you've set up here:
    http://www.lefora.com
    And to link to an external forum from iWeb's navigation bar:
    Link it to a blank internal page titled "Forum" (actually you can name the page whatever you want.) Then in that Forum page add an HTML Snippet with the following code:
    <script type="text/javascript">
    parent.window.location = "http://www.yourforumname.lefora.com"; // change this to your own URL
    </script>
    ...Once published, clicking on the Forum page in the navbar will immediately redirect to your external Forum page. (Thanks to Cyclosaurus for the code).
    Ning, the free "social networking" site, includes a forum:
    Add a rich single or multi-threaded discussion forum with categories, photos and attachments to your Ning Network. Limit forum topic creation to you or open it up to all of your members.
    http://about.ning.com/product.php

  • Need help in highlighting the query text in document

    Hi, I am trying to load the files in the blob column and trying to create the text index on it.
    i need to query the blob column in the document table with a string, which needs to return the relevant documents with the query string highlighted with some color.
    Can you please help me with an example on the above.
    Thanks in advance.

    SCOTT@orcl_11gR2> -- table:
    SCOTT@orcl_11gR2> CREATE TABLE document_tab
      2    (document_col  BLOB)
      3  /
    Table created.
    SCOTT@orcl_11gR2> -- procedure to load documents:
    SCOTT@orcl_11gR2> CREATE OR REPLACE PROCEDURE load_document
      2    (p_dir  IN VARCHAR2,
      3       p_file IN VARCHAR2)
      4  AS
      5    v_blob       BLOB;
      6    v_bfile       BFILE;
      7  BEGIN
      8    INSERT INTO document_tab (document_col)
      9    VALUES (EMPTY_BLOB())
    10    RETURNING document_col INTO v_blob;
    11    v_bfile := BFILENAME (UPPER (p_dir), p_file);
    12    DBMS_LOB.FILEOPEN (v_bfile, DBMS_LOB.LOB_READONLY);
    13    DBMS_LOB.LOADFROMFILE (v_blob, v_bfile, DBMS_LOB.GETLENGTH (v_bfile));
    14    DBMS_LOB.FILECLOSE (v_bfile);
    15  END load_document;
    16  /
    Procedure created.
    SCOTT@orcl_11gR2> SHOW ERRORS
    No errors.
    SCOTT@orcl_11gR2> -- load documents (directory and files must be on server, not client):
    SCOTT@orcl_11gR2> CREATE OR REPLACE DIRECTORY my_dir AS 'c:\my_oracle_files'
      2  /
    Directory created.
    SCOTT@orcl_11gR2> BEGIN
      2    load_document ('my_dir', 'banana.pdf');
      3    load_document ('my_dir', 'english.doc');
      4    load_document ('my_dir', 'sample.txt');
      5  END;
      6  /
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> -- confirm files were loaded:
    SCOTT@orcl_11gR2> SELECT DBMS_LOB.GETLENGTH (document_col)
      2  FROM   document_tab
      3  /
    DBMS_LOB.GETLENGTH(DOCUMENT_COL)
                              222824
                               22016
                                  60
    3 rows selected.
    SCOTT@orcl_11gR2> -- text index:
    SCOTT@orcl_11gR2> CREATE INDEX document_idx
      2  ON document_tab (document_col)
      3  INDEXTYPE IS CTXSYS.CONTEXT
      4  /
    Index created.
    SCOTT@orcl_11gR2> -- confirm files were indexed:
    SCOTT@orcl_11gR2> SELECT COUNT(*) FROM dr$document_idx$i
      2  /
      COUNT(*)
           319
    1 row selected.
    SCOTT@orcl_11gR2> -- function to return highlighted document:
    SCOTT@orcl_11gR2> CREATE OR REPLACE FUNCTION your_markup
      2    (p_index_name IN VARCHAR2,
      3       p_textkey    IN VARCHAR2,
      4       p_text_query IN VARCHAR2,
      5       p_plaintext  IN BOOLEAN  DEFAULT TRUE,
      6       p_tagset     IN VARCHAR2 DEFAULT 'HTML_DEFAULT',
      7       p_starttag   IN VARCHAR2 DEFAULT '*',
      8       p_endtag     IN VARCHAR2 DEFAULT '*',
      9       p_key_type   IN VARCHAR2 DEFAULT 'ROWID')
    10    RETURN          CLOB
    11  AS
    12    v_clob          CLOB;
    13  BEGIN
    14    CTX_DOC.SET_KEY_TYPE (p_key_type);
    15    CTX_DOC.MARKUP
    16        (index_name => p_index_name,
    17         textkey    => p_textkey,
    18         text_query => p_text_query,
    19         restab     => v_clob,
    20         plaintext  => p_plaintext,
    21         tagset     => p_tagset,
    22         starttag   => p_starttag,
    23         endtag     => p_endtag);
    24    RETURN v_clob;
    25  END your_markup;
    26  /
    Function created.
    SCOTT@orcl_11gR2> SHOW ERRORS
    No errors.
    SCOTT@orcl_11gR2> -- query that returns highlighted document:
    SCOTT@orcl_11gR2> VARIABLE string VARCHAR2(100)
    SCOTT@orcl_11gR2> EXEC :string := 'test AND demonstration'
    PL/SQL procedure successfully completed.
    SCOTT@orcl_11gR2> SELECT your_markup ('document_idx', ROWID, :string)
      2           AS highlighted_text
      3  FROM   document_tab
      4  WHERE  CONTAINS (document_col, :string) > 0
      5  /HIGHLIGHTED_TEXT
    This is a test document for demonstration of highlighting.
    1 row selected.
    SCOTT@orcl_11gR2>

  • Need help on forms

    Hello ,
    I wanted some help with form6i error messages.
    I wanted to define form6i error messages within database.
    And include severity (information, warning, error, or fatal),summary and detail information with variable text substitution ,common error -handling frame work formats errors for end user display and logs error information based on severity level.
    All the form messages should be stored in table and then it will be
    Customize and will be shown to user at runtime . how should I do that?
    This is really very urgent
    Thanks in advance ….

    This forum is for posting feedback about the OTN site.
    The best place for your question is probably the Forms.

  • (Need Help) How to create Numeric text box in SVG

    Hello everyone,
    Can any one help me to create Numeric TextField in SVG? I'm struggling to do this please someone help me as soon as possible....
    Thanks In advance,
    Ulaga

    To get the best answers, I think you probably need to break down your post into several different one with a separate question in each, along with the business problem you are trying to solve... but here's a few pointers for you to research...
    Textbox - there's plenty of info in SDN on creating a custom control with a textbox e.g. Re: Text Editor on modulepool Screen and sample code in SAP too.
    Attachments - If this is for an email, then GUI_UPLOAD might help and the BCS class is the newer way to send messages... check out Re: Offline Approval: RBBP_NOTIFICATION_OFFAPP Vs RSWUWFMLEC for example... if this is an attachment for an SAP object such as an FI Document or Purchase Order, then the Generic Object Services (GOS) could be what you want e.g. https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/0e6b0d95-0a01-0010-4696-ca0a48de5fb3
    Jonathan

  • Need Help on Forms Personalization

    Hi All,
    I am doing personalization on Sales Order Form.When i select Order Type as 'Mixed' i have to display salesperson as "No Sales Credit" in the form.But when i click on lov of salesperson field it is giving list of values. But i need only one item in the list i.e "No Sales Credit" when i select order type as 'MIXED'.For this i am trying to restrict lov of salesperson through Create Record Group from Query Built-in.But where can i put condition as Order Type as 'Mixed' in that personalization.
    Can anyone please help me out.
    Is there any posssible way to do this.
    Thanks in advance,
    Dhanasurya

    Hi DhanaSurya,
    First, you need to put 'Order Type' as Mixed in the Query Where clause of 'Create Record group from Query', and then you need to atatch a new Record group to the LOV with property:
    Object Type: LOV
    Target Object: <OLD LOV ON FORM>
    Property name: GROUP_NAME
    Value: 'customized Record Group Name'.
    Regards,
    Kiran

Maybe you are looking for

  • Creating a zipped file from table data

    I am currently extracting data from a table and creating a flat file which is read later to create a compressed (zip) file. Is there a way that I can create a zipped file in one step (i.e. directly from the table data)? I am trying to reduce the numb

  • Java code to pseudocode

    Hi, i have written this program but I also need to submit the pseudo code for it and i'm not really sure how to do this. Here is a sample of the code I have written, if someone could please get me on the write track so i can write the pseudocode for

  • OIM 11g R1 - Validating Password against Password Policy

    Hi, May I know how I can validate a password against a password policy specific to a particular resource object.Thanks.

  • Indesign upgrade failing. Continuously.

    I can't find anywhere to report a problem with an upgrade for InDesign CC 7.2.2 (adobe media encoder - critical). The error I keep getting is : Errors during installation: U44M1P7 - please help.

  • Use LSMW to create new MMR.

    Hi All, When using LSMW to create new MMR, for example material 202851 was created. However, when using MM03 to display this material, it says"The material 202851 does not exist or is not activated" What does this mean? Thanks. Jason