Need to divide my frame into panels

hey all,
I want to create two panels in the main frame i tried to do but, the two panels created with the same size, however i want one of them is norrow in in the buttom of the frame,
how can i make the panels with different sizes??
thanx

Look up LayoutManager and other Layout classes in the API.

Similar Messages

  • I need to divide selected row into multiple rows when i navigate  ADF 11g

    Hi
    I'm using jdeveloper 11.1.1.2.0 with ADF 11g.
    I need to divide selected row into multiple rows when i navigate to other page . Scenario - in first page i'm displaying some records with columns like empno , empstatus , empworkdepts ,curdepts
    Here empworkdepts gives the numeric number like no of departments work shifts 3 or 4 or 5. when i select any particular employee and fire next button to navigate next page.I have to divide the selected employee with same information into multiple times based on the empworkdepts value.
    empno empstatus empworkdepts curdept
    001 eds 2 TS
    002 hr 1 FO
    003 eds 4 TS
    *004 eds 3 TS*
    now i selected employee 004 , when i navigate to next page.
    Empno EmpStatus EmpWorkDepts CurDept
    004 eds 3 TS
    004 eds 3 TS
    004 eds 3 TS
    i did with java code in bean .but not stable .
    any help............
    thanks advance.............
    Edited by: user9010551 on May 5, 2010 10:48 PM
    Edited by: user9010551 on May 10, 2010 11:31 PM

    user9086775 wrote:
    Hi Experts,
    I have a requirment where i need to fetch parts of a single row into multiple rows from a singlt Query, i am sure it is possible using Pivots but just cant figure out an approach. Any help on this is highly appriciapted.
    Requirment:
    This is a sample set record in a table
    Product     Sub Product          Name    Age
    New Car    Nissan                   Tom        49
    New Car    Nissan                   Jack         36
    Old Car      Audi                     Sam         24
    Old Car      Jaguar                  Pint          26
    Old Car      Audi                     Smith       41
    I need to be able to fetch the above data in the below fashion
    Product     Sub Product          Name    Age
    New Car
    Nissan
    Tom        49
    Jack        36
    Old Car     
    Audi            
    Sam        24
    Smith      41
    Jaguar                   Pint         26Please help with ideas as to how can i achive the above without using PLSQL.
    Thanks in advance!You should be doing this in the client on not in the DB. Use the reporting tool that you use to do this.
    For example if you are in SQL Plus you can use the BREAK command.

  • I need help dividing an image into two equal parts in Adobe Illustrator CC--ASAP!!!

    I need help dividing a single, already created image into 2 equal parts...Am getting nowhere so far

    Hi Willi, thanks so much for responding! Below is the image I need to divide in half. The left half where it says "Click here for the definition" links to a landing page where people can read the definition of the Hebrew Word. The right half links to an audio recording of the Hebrew word being spoken aloud. I am trying to figure out how to use the scissors or knife tool in Adobe Illustrator and am having no luck. Plus I believe there's a way to include URLs on each separated part, but I can't get past figuring out how to cut it. My background is not graphic design

  • Need to Divide the string into multiple integers

    i have the String like below,that passed by user though one parameter.
    200 300 400 500 600(This come from one parameter as a String with space between each value).
    i need to use each above value in different column calculations.
    anybody help me how can i divide whole string into multiple integer values and use it in other calculations.
    Thanks in advance.

    You will need to use substr and instr functions to get each value. The instr function returns the location of a space in your parameter value..
    To get the first value, use this: <?xdofx:substr(AMOUNT,1,(Instr(AMOUNT,' ',1,1)-1))?>
    To get second value: <?xdofx:substr(AMOUNT,Instr(AMOUNT,' ',1,1)+1, (Instr(AMOUNT,' ',1,2)-1)- Instr(AMOUNT,' ',1,1)+1)?>
    To get third value: <?xdofx:substr(AMOUNT, Instr(AMOUNT,' ',1,2)+1, (Instr(AMOUNT,' ',1,3)- 1) -Instr(AMOUNT,' ',1,2)+1)?>
    and so on..
    Thanks,
    Bipuser

  • I need to divide an image into 8 by 8 blocks

    HI friends,
    I need to split an monochrome image into 8 by 8 blocks .can anyone help me with code..
    Thanks in advance,
    Edited by: neonnani on Mar 9, 2010 8:10 PM
    Edited by: neonnani on Mar 9, 2010 8:11 PM

    calypso wrote:
    DarrylBurke wrote:
    calypso wrote:
    to fill in the blanks, I think this should workare you sure you want x and y to always be zero?
    dbYes your right, i and j need to be cast to a double before dividing them<nitpic>Also realize that you should always multiply before doing division so you don't compound error as much as possible.</nitpic>

  • TS3276 I have a group of 114 members. is there a limit to the number of emails I can send from a group? If I choose this group it only seems to send to some of the people in the group. do I need to divide the group into smaller segments?

    I have a group with114 member. Is there a limit to the number of members I can email at one time. do I need to make subgroups so everyone gets the information?

    I'm not aware of any limitation in Mail, but many email providers have a limit on the number of addressees to help prevent spam. You might ask your email provider if they have a limit on how many addresses you can have in a single message.
    Regards.

  • Dividing a Frame into regions

    hi
    I have created a java.awt.Frame and had added the swing components to it.I have not arranged the components on the Frame.How can i arrange it?(I have not used any Layout).Should i use Layouts?If so which Layout will be best suited?Is there any site which will say me about the Look and Feel of a Frame.
    thanks

    I have created a java.awt.Frame and had added the
    he swing components to it.outch, don't mix awt and swing! create a javax.swing.JFrame and add swing components to it.
    better start at reading the tutorials to get an idea what to do and how to do it...
    thomas

  • How do I divide a page into 4, two rows and two columns?Dividing pages into 4?

    I am trying to create calling cards and need to divide a4 page into four.
    Any suggestions?

    Thanks for your help. I actually was able to divide into 4 sections in landscape layout by resizing 4 equal text boxes 4.25x5.50 with .25 " margins. I have not created a coupon yet. Will this format work or not. Also once I have created the coupon is there away to copy paste it with out losing the formatting. The last time I tried to do that it lost the formatting. Thanks again!

  • Divide a number into random parts

    I need to divide a number into a collection of random parts. So that the sum of all parts is equal to the number.
    E.g.:
    public void divideRandomly ( int number, int parts)
    int[] returnArray = new int[parts];
    //do random division calculations
    return returnArray;
    Lets say the number = 20
    And parts = 4
    I would then like to return an array of ints containing e.g. 3, 11, 5, 1
    OR e.g. 4,8,2,6
    Does anyone have a clue as to how I could do this?
    Cheers

    Be aware that given the wrong parameters this solution
    can take a long time to find a list. This seems misleading, as the termination condition is based
    on randomness. Although, it is possible to predict an average
    termination time.
    Basically your algorithm starts by generating initial random values
    in the range [0, maxValue]. You limit the size of the maximum
    generated value, although I'm not sure why. Obviously maxValue
    has to be greater than sum / length, otherwise it would be
    impossible to generate any combination values that add up to sum.
    Then your algorithm asks if the sum of those initial random values
    is equal to the target sum. If not, you cycle through the list replacing
    the the current position with a new random value and updating the
    current sum.
    As an example, let's suppose that maxValue is equal to sum, and
    that sum = 1000, and length (numParts) is 4.
    Assuming the minValue is 1, not 0, then the total number of
    permutations of 4 numbers that add up to 1000 is:
    165,668,499
    However, the total number of permutations is:
    1000^4 = 1,000,000,000,000
    In terms of probability, the chance of finding a solution on each try is:
    165,668,499 / 1,000,000,000,000 = 0.000165668499
    Thus, you'll need approximately 6036 loops on average to find a solution for 1,000 split 4 ways.
    For 2,000 split 4 ways, number of perms is:
    2000^4 = 16,000,000,000,000
    The perms of 4 numbers that add up to 2000 is:
    1,329,336,999
    Probability of finding a solution on each try is:
    0.0000830835624375
    Average number of tries is: 12036
    I'm impressed that the random approach is that fast.

  • How to divide an image into 100+ grids

    Hi
    I have a problem here;
    I need to divide an image into 100 or more grids on client side and I need to get the id of a clicked grid on server side. I found some mapping ways but it seemed too hard to achieve. I achieved to get coordinates of mouse click but this time if user uses control button + mouse scroll, all coordinates of the image changes. Can anyone offer me a solution.

    &#305; am working on adf faces they wanted me to do that on server side. But I am very new at this and I am really confused right now. How can I map 100+ sub images like one big image. I saw some examples on web but they include just two or three mappings but how to do this mapping with many?? I tried to do this by taking coordinates of click and calculating which grid is clicked but everything fails if user resizes the window.
    If there is a way to do that I was thinking of storing path of every grid on a list at server side and putting an image on the screen for every element of that list and by this way I could easly get which grid is clicked by just taking the id of clicked image. Can anyone help me to do this.???

  • How to divide the iview into frames?

    Hi Experts,
                  Please tell me how to divide the iview into frames.Kindly provide the   steps.Its urgent.
    Regards,
    Nutan

    Hi Nutan,
    Now its clear!!
    If I understand right. You want an overview page full of links to go to your different pages?
    Or maybe you want a link form each page to go to another page?
    In Portal Navigation through hyperlinks is possible.
    You can either do that using EPCM.doNavigate("ROLES://...") {check for EPCM API of help.spa.com}
    Or you could do that by simple
    <a href="http://www.sdn.sap.com/irj/portal/myql">CLICK</a>
    {check for Quicklinks on help.sap.com}
    Either way you'll have to make a small JSP for that.
    Hope this helped
    If so kindly reward with points
    Prem

  • How to divide the video into frames?

    Hi
    I need to get the frames from a video file.There is a option j2me for getting one frame(getSnapshot) and at the maximum of ten frames using snapCtrl.
    By using snapctrl i can take only ten pictures.when snapctrl is executed the first ten frames gets extracted from the video.it stores the frames in root directory which causes some delay in execution of next statement.
    my problem is because of this delay 3 or 4 frames are missed when i try to continue get the frames in a loop.
    Is there any other method to get all the frames??please help

    The JSR seems to be good but that JSR intent is to support the higher end device models like the PDA's, device that come under the CDC bed, Higher end versions of the Nokia series 60 and 80.
    Anyways that method call definitely must have been implemented in native i.e java calling native and it completely depends on the how the native functionality is been implemented. JVM must wait untill the native functionality terminates. Based on that native delay your java code needs to be tweaked. But there is always a trade-off when it comes to memory on different devices.
    Thanks for your info.
    ~Mohan

  • How to Convert frames into minutes and seconds

    Hi,
    does anyone know how to convert frames into time (minutes and
    seconds). I need the users to view the swf with current time being
    played and over time. I have 2152 frames in total and I want that
    to be converted to time. Can anyone help me on this. I would really
    appreciate it. It is very urgent!!!!
    Thanks

    Time Indicator,
    > does anyone know how to convert frames into time
    (minutes
    > and seconds).
    That depends entirely on the framerate of the movie. At the
    default
    12fps, 12 frames would be one second; 24 frames would be two.
    At 24fps, 24
    frames would be one second.
    > I need the users to view the swf with current time being
    played
    > and over time. I have 2152 frames in total and I want
    that to be
    > converted to time. Can anyone help me on this. I would
    really
    > appreciate it. It is very urgent!!!!
    Judging by your four exclamation points, I'd say it's
    definitely urgent!
    Well, again, if you're at 12fps, 2152 frames would take 179
    seconds, or 2
    minutes and 59 seconds. I arrived at that number by dividing
    2152 by 12.
    Keep in mind, though, framerate is actually more of a
    guideline than an
    exact figure. Framerate determines the rate at which Flash
    will *try* to
    display content. On an especially slow computer, the Flash
    Player may not
    be able to keep up, and the same number of frames might
    actually take more
    time.
    David Stiller
    Adobe Community Expert
    Dev blog,
    http://www.quip.net/blog/
    "Luck is the residue of good design."

  • JClient Application? Frame and Panels

    Hi all,
    New to Jdev 9.03 and attempting to come to terms with its use of the term "application" and the best structure for frames and panels.
    The term application in the help text and example code seem to take on different meanings. In one its a unit of work (task) or "the order form" in the other its a group of tasks "the order form" + "2 order views" + "1 customer view" lets say.
    I hope someone can put some light on this for me. Our testing project concerns the group what I will call for now "OUR APP" its the group above 1 form & 3 views. Using the wizards we would get 4 frames based on the unit of work in the examples or 1 frame and 4 panels based on others.
    One example shows example code opening several frames as different applications?? from a master application?? but none seem to show one frame managing several panels as seperate classes as an application???
    What is an application?? a unit of work or the subject "the complete group of tasks" ??? and are there any examples of one frame managing several panels built as seperate classes and forms as an application???
    any info or examples as how to approach this is helpful. thanks in advance,

    Robert,
    actually there is no definition of an application in the Java world and it is up to you to define what's your understanding of an application is. If e.g. you build a car rental system, what would you refer to a application, the whole thing, or individual modules like "car maintenance" and "employees" that could run stand alone as well? You can't even say that an application is defined by the package it is in because applications can span over multiple packages.
    The JClient wizard always generate some frames and panels for you because it needs to add the items somewhere. Having different panels generated seems to be a good approach in that it avoids writing all Java code into one big fat Java class. So many panels appear in a frame, many frames can show in a window, many windows can make up an application. But one frame with one panel also ca be an application, right ? JClient does not something Oracle specific, but is pure Swing.
    Frank
    Ps.: My definition of an application scope in Java is everything required to support a specific business need. So for the rental car example above it is the whole of all modules.

  • I need to divide a large 111MB PDF

    I need to divide a large 111MB PDF into several smaller more manageable pieces. I have CS5 but it won't open it. I just bought PDF Extractor so I could convert it to a Microsoft Word File and edit from there. Message says, file too big, over 100MB. How can I do this?

    You need Acrobat if you want to split the file.
    On Mon, Apr 20, 2015 at 7:13 PM, garys99515329 <[email protected]>

Maybe you are looking for

  • Laptop-mode-tools 1.62-1 line 1031: integer expression expected

    Hi, I have the problem mentioned in the subject since laptop-mode-tools 1.62-1 (yeah, I know newest version is 1.62-2 but it has the same error). The error appeared after v 1.61-2 was updated. Unfortunately, I wasn't able to track down these errors.

  • Can't sync music to my iPhone 3GS....Help!

    Need some assistance please. I can not sync any of my music to my iPhone. The most common error message I get is the following; " iPhone can not be synced. The disk could not be read from or written to." I'm also getting time out errors. Funny thing

  • AS3 and 508 Compliance?

    Hi, When setting up Flash content to be 508 compliant, has anyone encountered any issues in tabbing through the buttons? It seems that the buttons' descriptions aren't being picked up by the screen reader. Thanks, Dan

  • Signal strength fluctuation

    Hi all, We are installing a WLC-4402 with 1252 APs connected; they have been working ok; but we have a problem with a Lenovo x61's wireless laptop card; the signal strength of this client fluctuate (up and down) each few seconds (sometimes it gets di

  • Duplicate element names

    hi all in uk hrms manager resposnibility  there is total compensation--element here i created a flexfield named arabic name and then to the already existing elements the user added arabic names now the prompt for update or correction appears and i cl