How  to resize Matrix, button in form when  Form  Restore or Maximize

Hi Expert,
           How to  to resize my form when Forms are maximize or Restore

You may check through these:
http://forums.sdn.sap.com/search.jspa?threadID=&q=%22resize+Matrix%22&objID=f56&dateRange=all&numResults=15

Similar Messages

  • How to make a button stay down when I click on it in  CSS nav bar.

    So I have created a horizontal navigation bar, I use the CSS
    Sprites/Pixy method to get the hover working with the same image as
    the link/in active stage of the buttons.
    Now how do I make the button stay down when someone click on
    them?
    These are the codes for the nav bar.
    #nav{
    width: 780px;
    list-style: none;
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    padding: 0;
    height: 40px;
    #nav li{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: bold;
    float: left;
    padding: 0;
    #nav a{
    width: 125px;
    display: block;
    color: #000000;
    text-decoration: none;
    text-align: center;
    background-image: url(ZITTO_IMAGES/button_set1a.jpg);
    background-repeat: no-repeat;
    background-position: center 2px;
    padding-top: 14px;
    padding-bottom: 10px;
    background-color: #000000;
    #link2,#link3,#link4,#link5,#link5,#link6 { margin-left:
    6px;}
    #nav a:hover{
    background-image: url(ZITTO_IMAGES/button_set1a.jpg);
    background-repeat: no-repeat;
    background-position: center -36px;
    color: #FFFFFF;
    width: 125px;
    padding-top: 14px;
    padding-bottom: 10px;
    background-color: #000000;
    Everything works so far, the hover works when you roll the
    mouse but when you click the button goes right back.
    How can I make it stay down and then go back to normal when
    you click on another link/button?
    Thanks very much.
    Patrick

    Read my suggestion again. You are missing a critical point. I
    show you
    exactly where to put the stylesheet. And it doesn't matter
    how many
    stylesheets you have on a page.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Webethics" <[email protected]> wrote in
    message
    news:[email protected]...
    >
    quote:
    Originally posted by:
    Newsgroup User
    > Change this -
    >
    > #nav a{
    > width: 125px;
    > display: block;
    > color: #000000;
    > text-decoration: none;
    > text-align: center;
    > background-image: url(ZITTO_IMAGES/button_set1a.jpg);
    > background-repeat: no-repeat;
    > background-position: center 2px;
    > padding-top: 14px;
    > padding-bottom: 10px;
    > background-color: #000000;
    > }
    >
    > #link2,#link3,#link4,#link5,#link5,#link6 { margin-left:
    6px;}
    >
    >
    > #nav a:hover{
    > background-image: url(ZITTO_IMAGES/button_set1a.jpg);
    > background-repeat: no-repeat;
    > background-position: center -36px;
    > color: #FFFFFF;
    > width: 125px;
    > padding-top: 14px;
    > padding-bottom: 10px;
    > background-color: #000000;
    > }
    >
    > to this -
    >
    > #nav a{
    > width: 125px;
    > display: block;
    > color: #000000;
    > text-decoration: none;
    > text-align: center;
    > background-image: url(ZITTO_IMAGES/button_set1a.jpg);
    > background-repeat: no-repeat;
    > background-position: center 2px;
    > padding-top: 14px;
    > padding-bottom: 10px;
    > background-color: #000000;
    > }
    >
    > #link2,#link3,#link4,#link5,#link5,#link6 { margin-left:
    6px;}
    >
    >
    > #nav a:hover{
    > background-position: center -36px;
    > color: #FFFFFF;
    > }
    >
    > Then on each individual page, change this -
    >
    > </head>
    >
    > to this -
    >
    > <style type="text/css">
    > #nav a#link4 {
    > background-position:center - 36px;
    > }
    > </style>
    > </head>
    >
    > (for link4, for example)
    >
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    > ==================
    >
    >
    > "Webethics" <[email protected]> wrote
    in message
    > news:[email protected]...
    > >
    quote:
    Originally posted by:
    Newsgroup User
    > > When they click on a button, do they go to another
    page? And is each
    > > button
    > > uniquely identified?
    > >
    > > If so, then put a little stylesheet on each such
    page that sets the
    > > particular button to the down sprite settings,
    e.g.,
    > >
    > > a#link6 { downspritevalues }
    > >
    > > --
    > > Murray --- ICQ 71997575
    > > Adobe Community Expert
    > >
    > >
    > > This is the link to the page.
    > >
    http://www.patrickjudson.com/zitto_web1d.html
    > > What state do I use to get this effect? The active
    or the visited?
    > >
    > > I want the buttons to remain down when click or
    even better, how do I
    > > get
    > > the
    > > welcome button to appear down when a person visits
    the page to show them
    > > they
    > > are at the home page.
    > >
    > > Thanks so much. Patrick
    > >
    > >
    > >
    >
    >
    >
    > Hey! Murray, thanks very much for the efforts. However
    I'm still confused
    > as
    > to where to insert the individual styles on each page.
    >
    > The pages already have a style sheet, in fact they all
    share the same
    > style
    > sheet. The following codes below is what you instructed
    but I'm confused
    > as to
    > where to insert them since the page already has a head
    opening and closing
    > as
    > well as a style opening and closing tags. Can you please
    add the codes you
    > instructed so I can see where they go and how to
    implement them?
    >
    > Thanks - Patrick
    >
    >
    > Then on each individual page, change this -
    >
    > </head>
    >
    > to this -
    >
    > <style type="text/css">
    > #nav a#link4 {
    > background-position:center - 36px;
    > }
    > </style>
    > </head>
    >
    > (for link4, for example)
    >
    >
    >
    >

  • How to get LOV button in Forms 10g

    Hello Everyone,
    I have created a form in 10g and also create a LOV for item (DESIGNATION). But i can't get/see the LOV button, always i have to press Ctrl+L. And then from the list item can select.
    I need that button nearer to particular item for which LOV is created, just like we can get into Oracle Apps.
    Regards,
    JAK

    Hi Tony - Mark,
    Thanks for your reply. I did the changes " app.ui.lovButtons=false to true " as you both told me, but still the LOV button is not getting beside that text item.
    The senario is, Created a text item HIREDATE & to this item the Calendar library is attached i.e. PL/SQL library calendar90.pll, then create a KEY_LISTVAL trigger on the date item which is to use the Date List of Values window.
    Now when i run the form (Ctrl+R), the form will open in browser, but i can't see the LOV button with the HIREDATE text item. Always i h've to use "Ctrl+L" then it shows the calendar. So user has to know, how to open this calendar or just simply put the date directly in to the text item.
    I want to see the button (Just like we can get into oracle application, after attaching the value set). Whether it is possible to get it or i h've to place a button beside to HIREDATE text item & on this button code can be write to open the calendar.
    Thanks & Regards
    JAK

  • How to have a button remove itself when clicked?

    Here is my code...it should technically work, shouldn't it? Yet when you try it out and click the first button it will fail to refresh or update the frame. When I resize the frame after clicking the first button, the three buttons that were there before disappear and the new button appears. What can I do to fix this? Please help, try it out for yourself and see.
    Also, if you can explain to me, how can I center these buttons all to the right?
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class CPT extends JPanel implements ActionListener
    protected JButton AddEntryButton, ViewEntriesButton, SearchEntriesButton, AddButton;
    private final static String newline = "\n";
    public CPT ()
    super (new GridLayout (10, 10));
    AddEntryButton = new JButton ("Add Entry");
    AddEntryButton.setVerticalTextPosition (AbstractButton.TOP);
    AddEntryButton.setHorizontalTextPosition (AbstractButton.LEFT);
    AddEntryButton.setToolTipText ("Click this button to add a database entry.");
    AddEntryButton.setMnemonic (KeyEvent.VK_A);
    AddEntryButton.setActionCommand ("AddEntry");
    AddEntryButton.addActionListener (this);
    ViewEntriesButton = new JButton ("View Entries");
    ViewEntriesButton.setVerticalTextPosition (AbstractButton.CENTER);
    ViewEntriesButton.setHorizontalTextPosition (AbstractButton.LEFT);
    ViewEntriesButton.setToolTipText ("Click this button to add view all database entries.");
    ViewEntriesButton.setMnemonic (KeyEvent.VK_V);
    ViewEntriesButton.setActionCommand ("ViewEntries");
    ViewEntriesButton.addActionListener (this);
    SearchEntriesButton = new JButton ("Search Entries");
    SearchEntriesButton.setVerticalTextPosition (AbstractButton.BOTTOM);
    SearchEntriesButton.setHorizontalTextPosition (AbstractButton.LEFT);
    SearchEntriesButton.setToolTipText ("Click this button to search through all database entries.");
    SearchEntriesButton.setMnemonic (KeyEvent.VK_S);
    SearchEntriesButton.setActionCommand ("SearchEntries");
    SearchEntriesButton.addActionListener (this);
    AddButton = new JButton ("Add");
    AddButton.setVerticalTextPosition (AbstractButton.TOP);
    AddButton.setHorizontalTextPosition (AbstractButton.RIGHT);
    AddButton.setToolTipText ("Click this button to add a database entry.");
    AddButton.setMnemonic (KeyEvent.VK_A);
    AddButton.setActionCommand ("Add");
    AddButton.addActionListener (this);
    add (AddEntryButton);
    add (ViewEntriesButton);
    add (SearchEntriesButton);
    public void actionPerformed (ActionEvent e)
    if ("AddEntry".equals (e.getActionCommand ()))
    remove (AddEntryButton);
    remove (ViewEntriesButton);
    remove (SearchEntriesButton);
    add (AddButton);
    if ("ViewEntries".equals (e.getActionCommand ()))
    remove (AddEntryButton);
    remove (ViewEntriesButton);
    remove (SearchEntriesButton);
    if ("SearchEntries".equals (e.getActionCommand ()))
    remove (AddEntryButton);
    remove (ViewEntriesButton);
    remove (SearchEntriesButton);
    // Create the GUI and show it. For thread safety,
    // this method should be invoked from the
    // event-dispatching thread.
    private static void createAndShowGUI ()
    //Make sure we have nice window decorations.
    JFrame.setDefaultLookAndFeelDecorated (true);
    //Create and set up the window.
    JFrame frame = new JFrame ("Swisha Computer House");
    frame.setDefaultCloseOperation (JFrame.EXIT_ON_CLOSE);
    //Create and set up the content pane.
    JComponent newContentPane = new CPT ();
    newContentPane.setOpaque (true); //content panes must be opaque
    frame.setContentPane (newContentPane);
    //Display the window.
    frame.pack ();
    frame.setSize (300, 300);
    frame.setVisible (true);
    public static void main (String[] args)
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
    javax.swing.SwingUtilities.invokeLater (new Runnable ()
    public void run ()
    createAndShowGUI ();
    }

    You should tell the container it needs to be layed out again and then request for a UI update.
    Your first clause in actionPerformed:
    if ("AddEntry".equals (e.getActionCommand ()))
      remove (AddEntryButton);
      remove (ViewEntriesButton);
      remove (SearchEntriesButton);
      add (AddButton);
    }would then be:
    if ("AddEntry".equals (e.getActionCommand ()))
      remove (AddEntryButton);
      remove (ViewEntriesButton);
      remove (SearchEntriesButton);
      add (AddButton);
      invalidate();
      updateUI();
    }The same applies for the two other clauses, resulting in:
    public void actionPerformed(ActionEvent e)
       if ("AddEntry".equals(e.getActionCommand()))
          remove(AddEntryButton);
          remove(ViewEntriesButton);
          remove(SearchEntriesButton);
          add(AddButton);
          invalidate();
          updateUI();
       if ("ViewEntries".equals(e.getActionCommand()))
          remove(AddEntryButton);
          remove(ViewEntriesButton);
          remove(SearchEntriesButton);
          invalidate();
          updateUI();
       if ("SearchEntries".equals(e.getActionCommand()))
          remove(AddEntryButton);
          remove(ViewEntriesButton);
          remove(SearchEntriesButton);
          invalidate();
          updateUI();
    }

  • 10133 ADF: How to stop search button to execute when there is an error

    Hi,
    I have two dropdownlists in a search criteria on a search page. The search result is at the bottom of the same page. The two values in the dropdownlists need to be validated when the search button is clicked. The validation logic is put in the searchBtn_action method binded to the search button. In the logic, when an invalid combination happens, I am able to post some error message on top of the page. But how can I stop the application to execute the sql statement? I mean if there is any method I can call to exit if there is an error? Thank you very much.
    Regards,
    Annie

    This is most likely an optimization problem. I know such behaviour existed in the past with some functions and NI usually fixed it in some later release, but the recent changes in the LabVIEW compiler to use LLVM and various optimization improvements may have added this "feature" back in. The default value behaviour is certainly correct and consistent but the behaviour without default value feels not right to me for LabVIEW. In C I would say ok this is simply undefined behaviour and that means the produced code is entitled to even format your harddisk, since C explicitedly says all undefined behaviour is subject to choices by the implementor and is allowed to do whatever the implementor sees fit, including changing behavior between any version of the compiler.
    But LabVIEW as a high level language has explicitedly so called default default data, which in this case should be used. Just having read a bit about LLVM I know they are wrestling with C undefined behaviour as well and LLVM being used a backend by several C compilers already has to deal with them. The reason that C explicitedly has many undefined behaviours is to allow various and sometimes significant optimizations, that could not be done, if the C standard would explicitedly require specific behaviour in certain cases (for instance uninitialized variables).
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • How to put iconic button in forms 10g?

    Hi All,
    I've created a button with iconic property set to yes and icon file set to open. in forms 10g
    But when I run the form, the button appeared without the open icon show!

    In webforms, you have to put your icons in a jar file and put the jar file in a directory where Java can read from. the easiest place to put the jar file is the %ORACLE_HOME%/forms/java directory found in your Oracle installation directory
    for instance if you have your devsuite installed in C:\devsuite10g put the jar file in C:\devsuite\forms\java.
    check out [url http://www.oracle.com/technology/products/forms/pdf/webicons.pdf]Webicons it has both detailed steps to deploy icons in webforms and an easy and fast way to do it.
    Tony

  • How to make another button to availabe when click one button

    Hi,
    There are two buttons (Button A and B)on my page. The disable property of button A is false. The disable property of button B is ture. My issue is when I click Button A, how can I change the disable property of button B to false. Then Button B can be pressed.
    Thanks,
    Eileen
    Message was edited by:
    Eileen

    Generate a PPR event from button A and handle the PPR event, in the code after handling the event, write logic to set the enabled property of button B to true.
    read PPR chapter in devguide to understand thr details.
    Thanks
    Tapash

  • How to create iconic buttons in forms 10g.

    I am trying to create a iconic buttons, same I am able to do it in forms 6i but not in 10g. And also please give me a proper example of java bean items in forms 10g

    dear sunny
    are u able to do the iconic button on 10g forms i try but appear the icon on button I have alreay do the following
    Runtime Configuration
    1) Creating Jar file
    i) Once you are ready with your GIF files or JPG files, create a folder called ICONS. You can create this folder anywhere. For e.g. you can create ICONS folder on a C drive under root directory or as a sub-folder under any folder.
    ii) Assuming you have created ICONS folder as a root folder on C drive, now copy all your GIF files in this folder.
    iii) Go to the DOS prompt and enter cd\
    iv) At C:\ prompt enter the following command to create Java Archive File (JAR) called my_icons
    Jar ?cvf my_icons.jar icons
    (Note: If above command don't run then paste icons foled at C:\DevSuiteHome_1\jdk\bin.)
    v) Copy this file in <Forms10g_Home>\Forms\Java folder.
    Please remember that having the name of the folder holding GIF/JPG files as ICONS is very important. Because if the folder name is something else, icons will not be displayed in your form at run time.
    2) Modify REGISTRY.DAT file
    i) Open this file located in <Forms10g_Home>\forms\java\oracle\forms\registry folder.
    ii) Append the existing parameter default.icons.iconpath as follows:
    default.icons.iconpath=icons/
    iii) If you are going to use GIF files as image files for icons, then leave the existing parameter default.icons.iconextension=gif as it is. If you want to use JPG files instead of GIF files, replace GIF with JPG as shown below:
    default.icons.iconextension=jpg
    3) Modify FORMSWEB.CFG file
    This file exists under <Forms10g_Home>\Forms\Server folder.
    Append the following existing parameters:
    i) imagebase=codebase
    ii) archive_jini=frmall_jinit.jar,frmwebutil.jar,jacob .jar,my_icons.jar
    After doing above configurations, create a form and place an icon on the button. Set button's icon property = Yes and give name of icon.
    NOTE: This icon shoul be in jar file. If u want to add more icons in jar file then u will have to create JAR file again. Also again place it in <Forms10g_Home>\Forms\Java folder.
    pls if u have any solution send me

  • How to resize a button

    How to se ta size of a button??
    I tried to use
    Button.setSize(int,int);but the buttons size remains the same, no errors though, but the size of the button is still the same
    Help

    No that's not really the point - thank you for the dike BTW ... rather it matters which one is used and how it is configured. I really suggest you read the tutorial - it is not very long. Next try coding by switching only the LayoutManager:
    import java.awt.*;
    public class MyFrame extends Frame {
      public MyFrame() {
        setLayout(new GridLayout(1,1,0,0));
    //    setLayout(new BorderLayout());
    //    setLayout(new FlowLayout(FlowLayout.CENTER));
        Button b = new Button("GO!");
        add(b);
        pack();
        setVisible(true);
      public static void main(String[] argv) {
        new MyFrame();
    }

  • How to disable home button double tap when locked

    Hi.  I have an iphone 4s.  I listen to A LOT of audio books and frequently find that when I come back to listening after pausing it for an hour or two that it somehow started playing again at some point. It's annoying because it can take me a while to find my original place. Until today I had no idea why this keeps happening. Today I pulled my phone out of my pocket and saw the music controls on my lock screen and it finally dawned on me. Locked apparently doesn't mean locked. For some people this might seem like a convenient  feature but for me it's just annoying. Can I turn this off?  Thanks!

    Hi
    Go to Settings-->Audio profiles-->Press/Tap on the mechanic wheel symbol(symbol on the right of each profile) of the ''General'' profile-->Unmark ''Vibrate on touch'' (same goes for the ''Outdoor'' audio profile).
    Hope this helps.
    Cheers.
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as ''ACCEPT AS SOLUTION"! 
    Unsolicited PM's will not be answered! ....Please post your question/s in the appropriate forum board.
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • How to make the buttons INVISIBLE in the Application toolbar

    Hi All,
    I have a requirement to create a button in the Application toolbar of the Module Pool Screen. The field should be made Invisible by default. and it should be displayed based on one condition.
    Could you please let me know how to make that particular button INVISIBLE. I think we can make it invisible by using EXCLUDING statement. But, How to make the button VISIBLE again when the check is satisfied.
    I found from the portal that the FM 'VIEW_SET_PF_STATUS' can be used to make a button INVISIBLE. Could anyone help me out how to pass the parameters to this Function module?
    or is there any Function Module available to make the button VISIBLE and INVISIBLE? Please help me on this issues.
    Is there any possibility to make the button VISIBLE or INVISIBLE as we do for the screen fields using LOOP AT SCREEN..?
    Thank you in advance.
    Regards.
    Paddu.

    Hi,
    Try to use below in the PBO module status_0100 OUTPUT.
    DATA t_fcode TYPE TABLE OF sy-ucomm.
    refresh t_fcode[].
    APPEND 'Function code name of the button' TO t_fcode. 
    Check the condition here for which you want to make field visible.
        DELETE FCODE of the button from T_FCODE table
      ENDIF.
      SET PF-STATUS 'STATUS_0100' EXCLUDING t_fcode.

  • HOW TO MAKE ROUND BUTTON

    HI PLS TELL ME HOW TO MAKE ROUND BUTTON ON FORM.

    Rounded end buttons (e.g. Oracle Look and feel) are do-able in both 6i and 9i using PJCs in the 9i demos see the rollover button example, in 6i I seem to remember that there is a RoundedButton sample in the demos.
    Both sets of demos can be downloaded from http://otn.oracle.com/products/forms.
    If you want circular buttons then you'd have to use an Image for that.

  • How can print a report from form 6i,  when I press a button?

    hi Friends,
    How can print a report from form 6i, when I press a button?
    When i press a button from Form 6i, the report should print through printer.
    I have done it by using report parameter DESTYPE Printer but problem is that when I press a button printer dialogue box appear and then I give command Print to printer, I don’t want to show Printer dialogue box.
    I want when I press a button form Forms 6i , printer will print my report directly.
    Please send me the solution of this problem.
    Best regards,
    Shahzad

    Hi
    If You are using Client server application then to passing to Add all Print Parameter in the Host Command.
    Means Print command in unix to Host(lp.............) and Other Parameter to file name of the report to print.
    If You not Use Client Server Application the Also Passing a Host Command in Button-Pressed Event and Run.

  • How can I embed a form on my website and set up a submit button so that when people fill out and click Submit, the filled form will be emailed to me as an attached pdf file?

    How can I embed a form on my website and set up a submit button so that when people fill out and click Submit, the filled form will be emailed to me as an attached pdf file?
    Thank you!

    Hi;
    That is not a workflow that is supported by the Adobe forms solutions at this time.
    Thanks,
    Josh

  • How to make a button on a form that will not appear when printed?

    Hello again!
    I have a rather strange request that I got recently from my employeer regarding a form that we are currently working on:
    We have a form with a Acrobat created button on it that links to an attachment.  She does not want the button to appear when the document is printed.
    Is this even possible??
    Thanks in advance!
    Best Regards,
    Ashley

    You can set the form field to be "Visible but doesn't print" rather than "Visible". This is far easier than the scripting solution.

Maybe you are looking for

  • Copy Highlighted Text in Pdf file

    Hi everyone, Recently I downloaded the Adobe Reader X (version 10.0). This version allows me to highlight text (in yellow colour). However, If I want to copy a highlighted block of text (for instance to paste into a Word document), I am not able to d

  • Discoverer Viewer sporatically not working

    Discoverer Version: 10g Browser: IE 6.0.2900.2180 I have an instance where Discoverer Viewer will work on one persons machine and not another's. We are both using the same Discoverer Viewer and the same browser. By not working, I mean that when I run

  • OEL 5 CD1 boot

    Hi, I have OEL 5 CD's 1-5 burned but my cd 1 does not boot up to start the install. I looked at the files and folders and they are on the CD. My PC is setup to boot from the CDROM first but all I get is a flashing cursor and then it goes to my OEL 4

  • Video to apple tv audio to iphone

    i want to watch a movie at night but dont want to wake up my sleeping wife.. is there a way split the video from the audio? basically i want to airplay the movie from my iphone to the apple tv but keep the audio on my iphone by plugging in earphones.

  • Does roadrunner work with mac mail??

    I linked one roadrunner account to Mac mail but can't get the other one to work (same settings - checked more than once). Anyone else have this problem?