Help Needed in Refreshing Page.

Hi All,
I have an application with 2 pages.
1st page has radiogroup with submit (P1_RADIO). Based on selection of the radio button, some text field will appear (P1_ID). User has to enter value and hit SUBMIT button. I have one branch unconditional to page 1 itself. One more branch to page 2 when button pressed = SUBMIT.
When submit button is pressed, it will take user to page 2, where I have written before header process for exporting data to csv (Used Scotts custom export to csv method).
Now the new additional requiremnt is that, when user enters value in P1_ID and hits enter, the same functionality as hitting SUBMIT button must take place. Any ideas on how to achieve this?
I have already thought/tried the following:
1) Text (which submits when enter pressed is not working - as I cannot pass any request to it and hence cannot give a branch to page 2)
2) I gave a hidden field PI_CAPTURE_ENTER and assigned value of ENTER to it, if P1_ID is not null. Then I wrote a conditional branch to Page 2 , if :P1_CAPTURE_ENTER = 'ENTER'.
In Page 2, I cleared the P1_ID after running the csv process. This works properly.
But only problem is that even though session state for page 1 shows cleared data, I need to refresh the page 1 manually, if I need to run some other option in radiogroup. (If I do not refresh the page 1, the next time I hit radiogroup, P1_CAPTURE_ENTER will still = 'ENTER' and redirects to page 2)
How can I overcome this?
Or are there any other ideas by which i can achieve what is actualy needed?
Any help would be appreciated.
Thanks,
Sumana

ok.. Let me try to explain my requiremnt only (newly)
I have explained it in my first post, but will elaborate it again. (Oh btw I tried accessing apex.oracle.com to login to my id, but Page is down currently)
I have an application with 2 pages.
1st page has radiogroup with submit (P1_RADIO). Radio Group Values are: QSHOW, QSHOW1
Based on selection of the radio button, some text field will appear. If QSHOW is selected P1_ID will appear. If QSHOW1 is selected P1_USER will appear.
Assuming user has selected QSHOW. Page gets submitted on selection (Unconditional branch to page 1 used for this)
User enters 'Sumana' in PI_ID and hits SUBMIT button. This redirects to page to, where I have used behore header process to export to csv. (Used Scotts custom export to csv method).
Redirection happens because of conditional branch to Page 2 on hitting SUBMIT button.
Now the new additional requiremnt is that, when user enters value in P1_ID and hits enter, the same functionality as hitting SUBMIT button must take place.
Similarly if QSHOW1 is slected and P1_USER is given and enter is hit, the same functinality must happen.
How do I achieve this. My original requiremnt are still valid. This is additional one.
Thanks,
Sumana

Similar Messages

  • Help needed- Reg: Display page number in SQL Reports

    Hi,
    I need to display page number in " page no: X of Y " format where X is current page & Y is total number of pages. Now I am able to display only the current page using ' sql.pno '. but not able to display in ' X of Y ' format.
    Any inputs in this regard will be helpful.
    Thanks & Regards,
    Anilkumar.

    Hello Anil,
    If you have the above requirement for Oracle Reports then follow the steps:
    1.In the Paper Layout view or Paper Design view, choose InsertPage Number.
    2. In the Insert Page Number dialog box, choose from the list the location for the page number.
    3.Click the desired page number format: Page Number Only or Page Number and Total Pages.
    Cheers,
    Suresh

  • Help needed in refreshing a panel in my window.

    I have some problem in refreshing a panel of a window.
    Here I am writting the sample code bellow.
    My program contains 2 classes, one is "Test" other is "Testwindow".
    class Test contains main(),displays the buttons reading from the string array obtained by listing a directory in my local file system through the panel p2 .If I click "Add" button in Test, class Testwindow's constructor is called & "Testwindow" is visible, which has a textfield. If you enter a string in the textfield, that string will be stored as a file in the same directory that the 1st window use. here I choose "C:\\temp" of my filesystem as the directory.
    My requirement is:
    when I enter a string in the textfield of Testwindow, then after clicking "Finish" button, that inputted string should be added to the panel p2 of 1st window(Test)during runtime.It means the panel p2 should be refreshed reading from the "C:\\temp" as soon as a new button is added to temp directory during runtime.
    If any of you have idea over this,please help sending me the updated version of the code given below.
    Regards.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class Test extends JFrame
         JPanel p1,p2;
         JButton b1,bdir[];
         File f;
         String s[];
         int n,nmax;
         public Test()
              super("Test");
              JPanel con=(JPanel)getContentPane();
              con.setLayout(new BorderLayout());
              addWindowListener(new WindowAdapter(){
                   public void windowClosing(WindowEvent e)
                        System.exit(0);
              p1=new JPanel();
              p2=new JPanel();
              p2.setLayout(new GridLayout(nmax,1));
              b1=new JButton("Add");
              b1.addActionListener(new ActionListener(){
                   public void actionPerformed(ActionEvent e)
                        if(e.getActionCommand()=="Add")
                             new Testwindow();
              p1.add(b1);
              f=new File("c:\\temp");
              s=f.list();
              n=s.length;
              nmax=n+20;
              bdir=new JButton[n];
              for(int i=0; i<n; i++)
                   bdir=new JButton(s[i]);
                   bdir[i].setHorizontalAlignment(AbstractButton.LEADING);
                   p2.add(bdir[i]);
              int hor=ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
              int ver=ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
              JScrollPane jsp=new JScrollPane(p2,hor,ver);
              con.add(p1,"North");
              con.add(jsp,"Center");
              setSize(250,300);
         public static void main(String arg[])
              Test frame=new Test();
              frame.setVisible(true);
    class Testwindow extends JFrame implements ActionListener
         JPanel p1,p2,p3;
         JLabel l1;
         JTextField tf1;
         JButton b1,b2;
         String s1, sdir[];
         public Testwindow()
              setTitle("Testwindow");
              Container con=getContentPane();
              con.setLayout(new BorderLayout());
              p1=new JPanel();
              p1.setLayout(new GridLayout(1,2));
              p2=new JPanel();
              l1=new JLabel("Enter a string: ");
              tf1=new JTextField();
              b1=new JButton("Finish");
              b1.addActionListener(this);
              p1.add(l1);
              p1.add(tf1);
              p2.add(b1);
              con.add(p1,"North");
              con.add(p2, "South");
              setSize(300,150);
              show();
         public void actionPerformed(ActionEvent e)
              if(e.getActionCommand()=="Finish"){
                   try{
                        s1=tf1.getText();
                        File id_name=new File("C:\\temp\\"+s1+".txt");
                        FileOutputStream out=new FileOutputStream(id_name);
                        out.close();
                   catch(IOException x)
                        System.out.println("Exception caught"+x);
                   this.setVisible(false);

    You have 2 JFrame's: Test and TestWindow
    In order for TestWindow to send messages to Test it needs a reference of Test. Therefor write in TestWindow this:private Test parentFrame;
    public void setParentFrame (Test t)
      parentFrame = t;
    }... then after create an instance of TestWindow in Test call this method like this:...
    TestWindow tw = new TestWindow ();
    tw.setParentFrame (this);
    ...Next, in Test create a method that will be called when a string is inputted:public void sendString (String s)
      //update the panel or whatever
    }call this method when the user clicks on a button or whatever in TestWindow:parentFrame.sendString (s);greetz,
    Stijn

  • Help needed getting contacts page to work

    Hi there,
    I’m new to flash programming, so please bear with me.
    I bought a flash template to customise to use for our wedding
    website. I’ve got pretty much most of it done, all except the
    contacts page, which I can’t get to work.
    I think I’ve narrowed the problem down to the feed into
    send_mail.php script, but any suggestions would be greatly
    appreciated (before my future wife kills me for wasting so much
    time on this when we could have got a simple html website –
    but where would be the fun in that?!)
    I've attached the Action script behind the contacts page
    (please excuse the Spanish – for some reason the scripts are
    littered with it – for those who need to know, boton =
    button, listo = ready, nombre = name, cuadro = picture).
    From what I can gather, the first bit deals with what happens
    when you click on the buttons (name and email), the second bit is
    for error checking what’s entered, such as whether the email
    address has a @ or .com. The last bit is to feed the results into a
    php file, which should forward the contents of the contacts page to
    me.
    Here’s my send_mail.php file
    <?php
    $nombre=$_POST['name'];
    $email=$_POST['email'];
    $phone=$_POST['company'];
    $comentarios=$_POST['msg'];
    $to="[email protected]";
    $subject="From flash form";
    $headers="From: \"$name\" <$email>";
    $message = "Company: $company\n\n";
    $message .= $msg;
    mail($to,$subject,$message,$headers);
    ?>
    And I've put this php file in the same directory of my
    website as all the other swf and fla files – is that correct?
    Should this work? Or have I made a mistake anywhere?
    Many thanks
    DM

    Okay is the php script you have included here, THE actual
    script that is on your website? (unchanged in it's contents)
    Because where it says:
    $to="[email protected]";
    You have to change that to your email, or the email you want
    the form contents to send to.
    -Yes you will put the .php file in the same directory as the
    .swf file-
    Also you need to check that the variable and instance names
    in the flash file match the names in the .php file.
    Example:
    "mail.nombre = nombre.text;
    mail.email = email.text;
    mail.phone = phone.text;
    mail.comentarios = comentarios.text;
    mail.Submit = true;"
    -This is what you have provided for the form, which does not
    match the .php file provided.
    If the instance name of the email section is "email" the php
    file will read like this:
    email=$_POST['email'];
    The name inside the apostrophes is the instance name of that
    box.
    Looking at the scripts you have provided the instances and
    variables in the form do not match the ones in the .php file.
    If I am wrong, you can send me the original file if you wish
    and I can most likely find the problem for you and fix it.
    Or if you need help assessing this, I can do it for you! =P
    my email is [email protected]
    Hope I helped.
    Cheers!

  • Help needed with refreshing data

    hello OTN!!
    i am having a problem in refreshing the data each time i update it.
    the problem is that i have a tabular layout of my forms . i have made them all display items and whenever a user wants to update the data and he can click on a link on any row and a small pop up window comes up displaying the data in text boxes user can update an individual row of data but after updating the data when user come back on the tabulary laypout form the data does not refreshes it self and same old(not updated) row of data is displayed.
    i have passed parameters between the popup and tabular forms.plz help me urgently and tell me what should i do to refresh my data or behind what trigger i should write the code for refreshing the data. plus so far i have managed to make a button refresh which refreshes the things gaian by execute_query.but i wana do it automatically without pressing button and such .

    Well - you could reformat your drive to FAT32 using Disk Utility. Probably not the ideal solution, but it could work if you save the data first. I'd recommend using a different external drive formatted in FAT32, or maybe a large USB flash drive (or memory cards) if you've got one.
    I have several external drives and a drive enclosure. One (from SimpleTech) was automatically formatted as an NTFS drive (didn't see that notice before I plugged it into my PC at work). It wouldn't read on my iBook G4 but is OK on my MacBook. I think now that it mounts, I could probably reformat it if necessary. Another Western Digital drive came FAT32 formatted.

  • Help needed in refreshing a Panel

    I have created a GUI, which is having 2 windows. window1 is having a panel,that displays an array of buttons. from window1, clkicking "add" button window2 appears. in window2 I am adding new values to the button array of window1. window2 is having a button "ok".
    My requirement is when I'll add new buttons thru window2 to the button array in window1, and after clicking the "ok" button in window2, the window1 should be refreshed with the new button in the button array.
    I have already tried one solution for it.I put the creation, addition of buttons to panel & its visibility in a function and I called the function while clicking the "ok" button in window2. But it is showing a list of event dispatch error.
    If any of you have any better idea, please let me know soon.so that I can proceed further.
    Regards

    Do the following in window2 after adding the values to window1;
    window1.repaint();
    window1.validate();Hope this fixes your problem....And if not, then I need some code to work it.
    Cheers,
    Bolo

  • Help needed in refreshing a button array

    Hi,
    I am developing a GUI, in which window1 is in package pack1 & window2 in pack2. from window1, clicking "Add" button window2 appears.
    In window1, I am storing the content of a particular directory in my file system as a string array. So, each string in the string array is used as the label of a button in the button array. The no. of buttons corresponds to the no. of files in the directory. window1 is having a panel that displays the buttonarray.
    In window2, I have created a textfield and a "ok" button. whatever textinput(string) I give to the textfield, after clicking "ok" that is stored as a file in the directory, to which window1 refers for its buttons.
    My requirement is: During runtime, when I am creating new files thru the textfield of window2,those files need to be added to the panel of window1 dynamically updating the directory content.
    So, how can I refresh the panel in window1 after adding a file thru textfiels in window2.
    If anybody has any idea about this, please let me know soon.
    Regards.

    Hello,
    I have not got the solution. So, still I am waitiong for the answer.
    If you have any idea, please let me know.

  • Help needed in refreshing a panel in  a JFrame.

    I have some problem in refreshing a panel of a window.
    Here I am writting the sample code bellow.
    My program contains 2 classes, one is "Test" other is "Testwindow".
    class Test contains main(),displays the buttons reading from the string array obtained by listing a directory in my local file system through the panel p2 .If I click "Add" button in Test, class Testwindow's constructor is called & "Testwindow" is visible, which has a textfield. If you enter a string in the textfield, that string will be stored as a file in the same directory that the 1st window use. here I choose "C:\\temp" of my filesystem as the directory.
    My requirement is:
    when I enter a string in the textfield of Testwindow, then after clicking "Finish" button, that inputted string should be added to the panel p2 of 1st window(Test)during runtime.It means the panel p2 should be refreshed reading from the "C:\\temp" as soon as a new button is added to temp directory during runtime.
    If any of you have idea over this,please help sending me the updated version of the code given below.
    Regards.
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class Test extends JFrame
    JPanel p1,p2;
    JButton b1,bdir[];
    File f;
    String s[];
    int n,nmax;
    public Test()
    super("Test");
    JPanel con=(JPanel)getContentPane();
    con.setLayout(new BorderLayout());
    addWindowListener(new WindowAdapter(){
    public void windowClosing(WindowEvent e)
    System.exit(0);
    p1=new JPanel();
    p2=new JPanel();
    p2.setLayout(new GridLayout(nmax,1));
    b1=new JButton("Add");
    b1.addActionListener(new ActionListener(){
    public void actionPerformed(ActionEvent e)
    if(e.getActionCommand()=="Add")
    new Testwindow();
    p1.add(b1);
    f=new File("c:\\temp");
    s=f.list();
    n=s.length;
    nmax=n+20;
    bdir=new JButton[n];
    for(int i=0; i<n; i++)
    bdir=new JButton(s);
    bdir.setHorizontalAlignment(AbstractButton.LEADING);
    p2.add(bdir);
    int hor=ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED;
    int ver=ScrollPaneConstants.HORIZONTAL_SCROLLBAR_AS_NEEDED;
    JScrollPane jsp=new JScrollPane(p2,hor,ver);
    con.add(p1,"North");
    con.add(jsp,"Center");
    setSize(250,300);
    public static void main(String arg[])
    Test frame=new Test();
    frame.setVisible(true);
    class Testwindow extends JFrame implements ActionListener
    JPanel p1,p2,p3;
    JLabel l1;
    JTextField tf1;
    JButton b1,b2;
    String s1, sdir[];
    public Testwindow()
    setTitle("Testwindow");
    Container con=getContentPane();
    con.setLayout(new BorderLayout());
    p1=new JPanel();
    p1.setLayout(new GridLayout(1,2));
    p2=new JPanel();
    l1=new JLabel("Enter a string: ");
    tf1=new JTextField();
    b1=new JButton("Finish");
    b1.addActionListener(this);
    p1.add(l1);
    p1.add(tf1);
    p2.add(b1);
    con.add(p1,"North");
    con.add(p2, "South");
    setSize(300,150);
    show();
    public void actionPerformed(ActionEvent e)
    if(e.getActionCommand()=="Finish"){
    try{
    s1=tf1.getText();
    File id_name=new File("C:\\temp\\"+s1+".txt");
    FileOutputStream out=new FileOutputStream(id_name);
    out.close();
    catch(IOException x)
    System.out.println("Exception caught"+x);
    this.setVisible(false);

    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    public class test extends JFrame {
      JPanel p1, p2;
      JButton b1, bdir[];
      File f;
      String[] s;
      int n, nmax;
      public test() {
        super("Test");
        p1 = new JPanel();
        p2 = new JPanel();
        p2.setLayout(new GridLayout(nmax ,1));
        b1 = new JButton("Add");
        b1.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            new Testwindow(test.this);
        p1.add(b1);
        f = new File("c:\\temp");
        s = f.list();
        n = s.length;
        nmax = n + 20;
        bdir = new JButton[n];
        for(int j = 0; j < n; j++) {
          bdir[j] = new JButton(s[j]);
          bdir[j].setHorizontalAlignment(AbstractButton.LEADING);
          p2.add(bdir[j]);
        JScrollPane jsp = new JScrollPane(p2);
        getContentPane().add(p1, "North");
        getContentPane().add(jsp, "Center");
        setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        setSize(250,300);
        setLocation(100,100);
        setVisible(true);
       * Called by actionPerformed method in Testwindow
      public void addButton(String title) {
        JButton button = new JButton(title);
        button.setHorizontalAlignment(AbstractButton.LEADING);
        p2.add(button);
        p2.revalidate();
      public static void main(String[] args) {
        new test();
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    import javax.swing.*;
    class Testwindow extends JFrame implements ActionListener {
      JPanel p1,p2,p3;
      JLabel label1;
      JTextField tf1;
      JButton b1,b2;
      String s1, sdir[];
      test client;
      public Testwindow(test client) {
        setTitle("Testwindow");
        this.client = client;
        p1=new JPanel();
        p1.setLayout(new GridLayout(1,2));
        p2=new JPanel();
        label1=new JLabel("Enter a string: ");
        tf1=new JTextField();
        b1=new JButton("Finish");
        b1.addActionListener(this);
        p1.add(label1);
        p1.add(tf1);
        p2.add(b1);
        getContentPane().add(p1, "North");
        getContentPane().add(p2, "South");
        setSize(300,150);
        setLocation(360,100);
        setVisible(true);
      public void actionPerformed(ActionEvent e) {
        JButton button = (JButton)e.getSource();
        if(button == b1) {
          try {
            s1=tf1.getText();
            File id_name=new File("C:\\temp\\"+s1+".txt");
            FileOutputStream out=new FileOutputStream(id_name);
            out.close();
          catch(IOException x) {
            System.out.println("Exception caught"+x);
          s1 = tf1.getText();
          client.addButton(s1);
          this.setVisible(false);
    }

  • HELP need urgently! Pages not loading ANY images in my document.

    Hi all,
    I am writing my thesis for my degree, and my document is quite large. I have ~40 images of various sizes, up to 300kB. Everything was fine last night, and I saved the pages document three times on three different storage devices because I'm paranoid about losing this work.
    I closed Pages last night after saving, and today when the document is opened, every single image has been replaced with a grey square containing a question mark.
    What I can't understand is that when I quick-look the document in finder, it still contains all the images just as it was last night.
    Help with this would be very much appreciated!
    Thanks in advance,
    Graham

    It doesn't say "include", that is the previous check box. It is just Save as.
    Saving to Word (really this export) is not perfect in Pages particularly if you have used any uniquely Pages features.
    Since I can't see what you have done, which is probably something you have not described, it really would be faster just to see the docuument. Currently I am suspecting it maybe inline graphics.
    Peter

  • HELP need simple search page

    Hi. I need to build a search page of the database. I think it's a simple search. The "catalog" is set up in the MYSQL database structure into two tables :authors and books: which are relational via ID numbers. The idea is to enter a search term on the search page and come up with a list of results that look like catalog entries. Each catalog entry consists of book, author, picture, and description. The user needs to be able to enter any term, or partial term and come up with entries. How do I do this?
    I'm in CS3.

    Have a form with form action that goes to script.php on script.php create a recordset and filter entered value against database table field. Then add bindings onto the page to show the results of the filtered recordset. Nest the bindings in a repeat region to display results if there's more than one result available in the search query.

  • Help needed with Browser page views

    I have a Curve 3G, and my browser has full page views. I want to change to column views. I just updated my OS to 6, and must say that I HATE it!!! However, according to Blackberry help, I should be able to push the menu button and simply click on column view. That is not an option on my menu. There is nowhere to change the view, that I can find. Any suggestions? Thanks in advance.

    Hi guys
    As a mere 8520 user I cannot ever have OS6, but having looked into the question of column view, it seems its now officially available for the 9780 and possibly the 9700 (it was a leaked version I saw) so its on its way.
    Blackberry Best Advice - Back-up weekly
    If I have helped you please check the "Kudos" star on the right >>>>

  • Help needed with child pages

    Hello,
    I'm a complete novice at using Adobe Muse, so i hope you can help me out!
    The website i'm creating is for a shop, so i have about 10 master pages for the brands, then i add a child page under each brand, then add pages to the right of that so i have a long row of products for each brand. As you can imagine my Adobe Muse screen is quite long horizontally.
    Is it possible to create 'top level pages' underneath other top level pages to make it easier for me to navigate around?
    Thanks

    Yes, you are right. 
    Felicity, see http://www.adobekb.com/participating_in_muse_beta.html
    You can join the beta for Muse 5 and get access to this navigation feature.
    Cheers,
    J

  • Help needed in login page.

    Hi guys,
    I have just started learning JSP and implemented login model in my application.
    Request all of you to kindly go through the code and suggest any recommendation if required.
    Though there is no error while executing the code and getting the login page . I just wanted to know whether the code is written in proper manner or not.
    <%@ page import="java.lang.*" language="java"%>
    <%@ page import="java.sql.*" %>
    <%@ page import="java.io.*" %>
    <%
            //Getting Username and Password from text box
            String username   = request.getParameter("username");
            String password  = request.getParameter("password");
            try
             //Triming Username and Password
             String trim_Username  = username.trim();
             trim_Username= trim_Username.toLowerCase();
             String trim_Password =  password.trim();
             Connection conn=null;
             Statement stmt=null;
             ResultSet rs=null;
             String id  =  null;
             String pin =  null;
             String fullname =null;
             String role =null;
             Class.forName ("oracle.jdbc.driver.OracleDriver");
             conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE", "lightweight", "oracle");
                                // @machineName:port:SID,   userid,  password
            String sql = "select * from LIGHT_CRED where USERNAME='"+trim_Username+"'";
            stmt = conn.createStatement();
            rs = stmt.executeQuery(sql);
            while( rs.next() )
             //Getting Username,Password,roll,Fullname from Database.
             id=rs.getString(1);
             pin=rs.getString(2);
             role=rs.getString(3);
             fullname=rs.getString(4);
            if(trim_Username.equals(id) && trim_Password.equals(pin))
            out.println("login successful");
            session.setAttribute("user",trim_Username);
            session.setAttribute("fullname",fullname);
            session.setAttribute("role",role);
            response.sendRedirect("cgipage.jsp");
            else
            out.println("incorrect username/password combination");
    catch(Exception e)
    System.out.println(e.getMessage());
    %>
    <html>
    <body>
    <form action=login.jsp method=post>
    <p align="center">
    <BR>
    Light Weight Manager</p>
    <table border="1" width="443" height="80" align=center>
    <tr>
                    <td height="37" width="177">Username: </td>
                    <td height="37" width="180"><input type=text size=20 name=username></td>
                    <td height="37" width="64"> </td>
            </tr>
            <tr>
                    <td height="35" width="177">Password:  </td>
                    <td height="35" width="180"><input type=password size=20 name=password></td>
                    <td height="35" width="64">
    <input type=submit value="Log In"></td>
            </tr>
    </table>
    <p> </p>
    <p> </p>
    </form>
    </body>
    </html>

    What You've listed are not technologies but IDEs. IDE is just a tool that helps You during development process and makes Your job easier. At the beginning IMO it's better to use NetBeans cause it's ready to work out of the box and has better integration between IDE and webc ontainer than Eclipse. Start from reading this book. It's excellent for the beginner.

  • I need help with a 1 Page Form with scrollable text field (5000 limit characters) and printing

    Hello, I have no training in using Adobe Acrobat Pro or Livecycle Designer so I need major help with a 1 page form that I am attempting to create. Basically the form will be used to nominate employees for a Job Well Done Award.
    The form contains the following:
    1.) The name(s) of the employees being nominated and the date of the accomplishment.
    2.) In the middle of the page I have a section for a write up, limited to 5000 characters, this is were I am needing the most help. A couple of things, about this section: The font is set at 11 and I don't want it to change. The text field has multiple-line, scroll long text enabled. The text field is a certain size and can only hold so much text, then it starts to scroll, which I am ok with, I like that feature. The issue I am having is during printing. I would like to keep the text field scrollable but when I print I would like to be able to print everything in that field. Executing this is the problem, I have no clue how to do it. I was hoping for some setting within Acrobat Pro or LiveCycle to be available, but the more I read and research this, it appears that it may require java, xml, basically some coding. I don't know for sure.
    3.) Below the text field I have another field for the person nominating to type their name and right next to that another field for a digital signature.
    4.) And finally below those two fields I have a Submit button that is setup to start email application so the form can be emailed to the proper inbox.
    Thank you in advance.

    With an Acrobat form the only thing you can do is export the text to
    another location (like a blank field on another page) or to another file
    format. With an LCD form you can expand the text box itself, but you'll
    need to ask about that over at the LCD Scripting forum.

  • Help! Need to override Page Down/Page Up in JList

    Help! Need to override Page Down/Page Up in JList...
    PgUp PgDn selects the top or bottom item in a Jlist when JList is in focus. I want PgUp and PgDn to do something different (which it does), but it still selects top or bottom items. How do I COMPLETELY remove all key listeners in the JList?
    Oliver

    Sounds like you are just adding a key listener to the list and just
    listening for PAGE_UP/PAGE_DOWN. Which is why the original behavior is
    still there: both your listener and the list's own handler are being
    invoked.
    What you might want to do instead is to either set your own action
    for PAGE_UP/PAGE_DOWN in the list's input map, and then set that action
    to your own in the list's action map, or try setting the scrollUp and
    scrollDown actions to your own action in the list's action map. Note
    that shift PAGE_UP/PAGE_DOWN are also bound, by the way.
    : jay

Maybe you are looking for

  • LDAP user synchronization using scheduler

    hello, Is there any OOTB functionality available to synchronize users from LDAP into CQ5? If not, please help me to proceed in below scenario. I have written a scheduler, which will pull the user details from LDAP and create the user into CQ using Us

  • 8330 and duplicate calendar entries

    For some reason I am getting duplicate calendar entries (of the same event) from multiple email addresses.  How to I stop this?  I'm using Google sync (working fine) but I get entries from my Hotmail, another local ISP and Juno.  And Juno doesn't off

  • Custom fileds in ESS

    Hi Experts, We have enhanced the infotype 0022 to meet the requirements of the client. I mean we have added a new field in Infotype 0022 in R/3. Can we see the newly added field on ESS. If so please let me what are the settings that are to be made to

  • WebService with Crystal Report

    Hi I'm using VS2008. The webservice with an rpt-file works on my machine (i can set the required parameters ... logon and parameter field value). When I deploy it to the web-server, start the default.aspx, the parameter field is shown on the website

  • (104) Connection reset by peer

    Dears, I have a web Application which works fine when accessed from other machines except one. Only in that machine I get an error **(104) Connection reset by peer** Please help me to solve this problem.