How to draw rectanlge in the panel, clear, repaint?

when i was taking my coding, i found a problem which i could not solve.So, i hope someone can help. Thank you.
the question :
1. how to draw Rectangle in the Panel?
2. how to clear?
3. how to repaint?
The following is my coding.
import javax.swing.*;
import java.awt.*;
public class DrawScreen extends JFrame {
Color rectColor=Color.white;
int hight=100;
Panel Button_panel = new Panel();
Button button1 = new Button();
Button button2 = new Button();
Button button3 = new Button();
Panel Draw_Panel = new Panel();
public DrawScreen(String title) {
     super(title);
     try {
     Init();
     catch(Exception e) {
     e.printStackTrace();
private void Init() throws Exception {
setResizable(false);
setFont(new Font("Serif",Font.ITALIC,12));
     this.getContentPane().setLayout(null);
     Button_panel.setBackground(SystemColor.control);
     Button_panel.setLocale(java.util.Locale.getDefault());
     Button_panel.setBounds(new Rectangle(14, 17, 118, 259));
     Button_panel.setLayout(null);
     button1.setLabel("Draw Square");
     button1.setBounds(new Rectangle(0, 69, 115, 22));
     button2.setLabel("Colour Red");
     button2.setBounds(new Rectangle(0, 111, 115, 22));
     button3.setLabel("Clear Screen");
     button3.setBounds(new Rectangle(2, 152, 115, 22));
     Draw_Panel.setBackground(Color.white);
     Draw_Panel.setBounds(new Rectangle(138, 15, 254, 266));
//     System.out.println(Draw_Panel.getBounds());
     this.getContentPane().setBackground(Color.white);
     this.getContentPane().add(Button_panel, "East");
     Button_panel.add(button3, null);
     Button_panel.add(button2, null);
     Button_panel.add(button1, null);
     this.getContentPane().add(Draw_Panel, "West");
     addWindowListener(new java.awt.event.WindowAdapter(){
          public void windowClosing(java.awt.event.WindowEvent e){
               System.exit(0);
button1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
button1ActionPerformed(evt);
button2.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
button2ActionPerformed(evt);
button3.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
button3ActionPerformed(evt);
pack();
private void button1ActionPerformed(java.awt.event.ActionEvent evt) {
     hight=(int)(Math.random()*100);
     rectColor=Color.black;
repaint();
private void button2ActionPerformed(java.awt.event.ActionEvent evt) {
     rectColor=Color.red;
repaint();
private void button3ActionPerformed(java.awt.event.ActionEvent evt) {
rectColor=Color.white;
repaint();
public void paint(Graphics g){
     g.setColor(rectColor);
     g.drawRect(50, 50,hight,hight);
public static void main(String[] args) {
DrawScreen ds=new DrawScreen("Square Plotter");
     ds.setSize(600,350);
     ds.setVisible(true);

Few changes and it works:
import javax.swing.*;
import java.awt.*;
public class DrawScreen extends JFrame
     Color  rectColor    = Color.white;
     int    hight        = 100;
     Panel  Button_panel = new Panel();
     Button button1      = new Button();
     Button button2      = new Button();
     Button button3      = new Button();
     DPanel Draw_Panel   = new DPanel();
public DrawScreen(String title)
     super(title);
     setResizable(false);
//     setFont(new Font("Serif",Font.ITALIC,12));
//     this.getContentPane().setLayout(null);
     Button_panel.setBackground(SystemColor.control);
     Button_panel.setLocale(java.util.Locale.getDefault());
     Button_panel.setBounds(new Rectangle(14, 17, 118, 259));
     Button_panel.setLayout(null);
     button1.setLabel("Draw Square");
     button1.setBounds(new Rectangle(0, 69, 115, 22));
     button2.setLabel("Colour Red");
     button2.setBounds(new Rectangle(0, 111, 115, 22));
     button3.setLabel("Clear Screen");
     button3.setBounds(new Rectangle(2, 152, 115, 22));
     Draw_Panel.setBackground(Color.white);
     Draw_Panel.setBounds(new Rectangle(138, 15, 254, 266));
//  System.out.println(Draw_Panel.getBounds());
//     this.getContentPane().setBackground(Color.white);
     this.getContentPane().add(Button_panel, "East");
     Button_panel.add(button3);
     Button_panel.add(button2);
     Button_panel.add(button1);
     this.getContentPane().add(Draw_Panel, "Center");
     addWindowListener(new java.awt.event.WindowAdapter()
          public void windowClosing(java.awt.event.WindowEvent e)
               System.exit(0);
     button1.addActionListener(new java.awt.event.ActionListener()
          public void actionPerformed(java.awt.event.ActionEvent evt)
               button1ActionPerformed(evt);
     button2.addActionListener(new java.awt.event.ActionListener()
          public void actionPerformed(java.awt.event.ActionEvent evt)
          button2ActionPerformed(evt);
     button3.addActionListener(new java.awt.event.ActionListener()
          public void actionPerformed(java.awt.event.ActionEvent evt)
               button3ActionPerformed(evt);
//     pack();
private void button1ActionPerformed(java.awt.event.ActionEvent evt)
     hight=(int)(Math.random()*100);
     rectColor=Color.black;
     repaint();
private void button2ActionPerformed(java.awt.event.ActionEvent evt)
     rectColor=Color.red;
     repaint();
private void button3ActionPerformed(java.awt.event.ActionEvent evt)
     rectColor=Color.white;
     repaint();
public class DPanel extends JPanel
public DPanel()
public void paintComponent(Graphics g)
     super.paintComponent(g);
     g.setColor(rectColor);
     g.drawRect(50, 50,hight,hight);
public static void main(String[] args)
     DrawScreen ds=new DrawScreen("Square Plotter");
     ds.setSize(600,350);
     ds.setVisible(true);
}Noah

Similar Messages

  • How to draw a shape to Panel instead of draw to Frame

    I have a Frame and add a Panel into this Frame. I want to draw a shape to Panel instead of draw to Frame. how do i do?

    You can do two different things:
    1) For temporary drawings that will disappear when the component is repainted, you can use getGraphics() on the Panel, draw on the Graphics, then dispose the Graphics.
    2) For persistant drawings, subclass Panel and override the paint(Graphics g) method. Anything in there will be painted along with the panel. Start with super.paint(g); when you override for good coding practice.

  • [SOLVED] [GNOME3] How to add applets to the panel

    I'm using GNOME 3 in fallback mode, and I can't figure out how can I add or remove applets to gnome-panel. I can't find any GUI tool for do that, and I can't add dconf settings also (with dconf-editor I could set existing values only). Could someone help me?
    Last edited by City-busz (2011-04-11 14:10:47)

    LeCrayonVert wrote:Same thing here on my laptop... I dunno why, cause alt+right click works fine on another computer...
    Maybe you changed the key /apps/metacity/general/mouse_button_modifier in gconf-editor. I had changed it to <Super>, resetting it to the default (<Alt>) made Alt+Right-Click work. (at least, for some time after the session starts, but it may be an other problem).
    P.S.: See this thread : https://bbs.archlinux.org/viewtopic.php?id=117978
    Last edited by Niavlys (2011-05-13 13:55:25)

  • How to draw text onto the screen?

    Hi,
    I'm looking for a way to draw a String directly onto the screen.
    Anybody have any ideas?
    Regards
    ABourke.

    Someone posted a nice example of what the OP wants a while ago on [java.net|http://forums.java.net/jive/thread.jspa?threadID=57353&tstart=30] : [CircleScroller (jnlp)|http://mac-systems.de/circlescroller/launch.jnlp].
    It uses the 6u10 [transparant window feature|http://java.sun.com/developer/technicalArticles/GUI/translucent_shaped_windows/], but he didn't post the code itself.

  • How to draw cut the rope style box

    Hi. I was wondering how to draw a cut the rope style box.
    What I mean is how to they get that look. Is there a texture overlay? I suppose there is some blurring too.
    https://www.google.es/search?q=cut+the+box+menu&espv=2&biw=1242&bih=641&source=lnms&tbm=is ch&sa=X&ei=xf2kVOG2D8P3UqLjg9A…

    Hi.
    Yeah sorry.
    Cut the rope is a popular game app available on the app store or google play. That's why I left the link.
    The menu is made up of boxes. Each box has a pattern.
    With the following link you can see the texture even more closely. It is the green rectangle image at the top with green circles etc...
    Complete Guide to all Cut the Rope Drawings

  • Stop the panels window from blinking on every click!

    How about making it so the panels window doesn't blink/flash when you click on anything other than the panels window? It does this everytime you click on something, I'm starting to get a twitch….!? Imagine if your layers panel did this in photoshop....

    Delete downloads.sqlite in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    See http://kb.mozillazine.org/Unable_to_save_or_download_files#Manually_delete_download_history
    "Clear the Cache": Firefox > Preferences > Advanced > Network > Offline Storage (Cache): "Clear Now"
    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]

  • How to draw multiple line graph using bi graph in  JHeastart?

    hello,
    i have a problem when displaying a multiple graph in JHeadstart.i had created a graph that represent the report of medical testing.my x-axis is "report date",my y-axis is "observation value" then my series attributes is depend on "item description" .
    One patient has many "item description",each "item description" has one "observation value" and each "item description" has many "report date".
    when the graph was displayed,it only show me in 1 line,then it is depend on the id patient but not like what i set in the graph wizard.actually,it should be display fews line accroding to the "item description".
    then,the "observation value" and "item description" are get from defferent entity object.
    i dun know what was happen.any hits are welcome.
    thanks

    yes,finally i found how to draw it.Actually the series attributes is depend on VO's primary key .
    thanks to who was view my problem.

  • How do I collapse all the accordion panels

    The problem that I still have is that I am trying to close all the Accordions when clicking on the last panel.
    I have looked at the  Accordion.closePanel() , but that throws an error
    http://labs.adobe.com/technologies/spry/articles/data_api/apis/accordi on.html
    here is a link to the page http://www.antworks.co.uk/mobymemory/menu.html
    see the code below. Any help would be greatly appreciated. Thanks
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <script src="SpryAssets/SpryAccordion.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryAccordion.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="Accordion1" class="Accordion" tabindex="0">
    <div class="AccordionPanel">
    <div class="AccordionPanelTop" onclick="Accordion1.openPanel(0); return false;">memory cards (make)</div>
    <div class="AccordionPanelContent">
    <img src="images/new/trans.gif" width="7" height="7" /><br />micro SD / Transflash<br />
    <img src="images/new/trans.gif" width="7" height="12" /><br />micro SD / Transflash<br />
    <img src="images/new/trans.gif" width="7" height="12" /><br />micro SD / Transflash<br />
    <img src="images/new/trans.gif" width="7" height="12" /><br />micro SD / Transflash<br />
    <img src="images/new/trans.gif" width="7" height="12" /><br />micro SD / Transflash<br />
    <img src="images/new/trans.gif" width="7" height="12" /><br />micro SD / Transflash<br />
    <img src="images/new/trans.gif" width="7" height="12" /><br />micro SD / Transflash<br />
    <img src="images/new/trans.gif" width="7" height="12" /><br />micro SD / Transflash<br />
    <img src="images/new/trans.gif" width="7" height="12" /><br />micro SD / Transflash<br />
    <img src="images/new/trans.gif" width="7" height="12" /><br />micro SD / Transflash<br />
    <img src="images/new/trans.gif" width="7" height="12" /><br />micro SD / Transflash<br />
    <img src="images/new/trans.gif" width="7" height="12" /><br />micro SD / Transflash<br />
    <img src="images/new/trans.gif" width="7" height="12" /><br />micro SD / Transflash<br />
    <img src="images/new/trans.gif" width="7" height="3" />
    </div>
    </div>
    <div class="AccordionPanel">
    <div class="AccordionPanelTab" onclick="Accordion1.openPanel(1); return false;">memory cards (brand)</div>
    <div class="AccordionPanelContent2">Content 2</div>
    </div>
    <div class="AccordionPanel">
    <div class="AccordionPanelTab" onclick="Accordion1.openPanel(2); return false;">mobile accessories</div>
    <div class="AccordionPanelContent">Content 2</div>
    </div>
    <div class="AccordionPanel">
    <div class="AccordionPanelTab" onclick="Accordion1.openPanel(3); return false;">gaming</div>
    <div class="AccordionPanelContent">Content 2</div>
    </div>
    <div class="AccordionPanel">
    <div class="AccordionPanelTab" onclick="Accordion1.openPanel(4); return false;">computing</div>
    <div class="AccordionPanelContent">Content 2</div>
    </div>
    <div class="AccordionPanel">
    <div class="AccordionPanelBot" onclick="Accordion1.openPanel(5); return false;">customer login</div>
    <div class="AccordionPanelContent">Content 2</div>
    </div>
    </div>
    <script type="text/javascript">
    <!--
    //var Accordion1 = new Spry.Widget.Accordion("Accordion1", {closedClass:"Accordion"});
    //var Accordion1 = new Spry.Widget.Accordion("Accordion1", {closedClass:"AccordionPanel"});
    var Accordion1 = new Spry.Widget.Accordion("Accordion1", { useFixedPanelHeights: false });
    //-->
    </script>
    </body>
    </html>
    css
    @charset "UTF-8";
    /* SpryAccordion.css - Revision: Spry Preview Release 1.4 */
    /* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
    /* This is the selector for the main Accordion container. For our default style,
    * we draw borders on the left, right, and bottom. The top border of the Accordion
    * will be rendered by the first AccordionPanelTab which never moves.
    * If you want to constrain the width of the Accordion widget, set a width on
    * the Accordion container. By default, our accordion expands horizontally to fill
    * up available space.
    * The name of the class ("Accordion") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style the
    * Accordion container.
    .Accordion {
    width: 174px;
    overflow: hidden;
    /* This is the selector for the AccordionPanel container which houses the
    * panel tab and a panel content area. It doesn't render visually, but we
    * make sure that it has zero margin and padding.
    * The name of the class ("AccordionPanel") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel container.
    .AccordionPanel {
    margin: 0px;
    padding: 0px;
    /* This is the selector for the AccordionPanelTab. This container houses
    * the title for the panel. This is also the container that the user clicks
    * on to open a specific panel.
    * The name of the class ("AccordionPanelTab") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel tab container.
    .AccordionPanelTab {
    background-color: #CCCCCC;
    letter-spacing: -0.04em;
    background-image: url(../images/new/spry/meun_blue.gif);
    background-repeat: no-repeat;
    padding: 8px 0 0 12px;
    height: 21px;
    font-family: Arial, Helvetica, sans-serif;
    color:#666666;
    font-size: 14px;
    font-weight: bold;
    margin: 0px;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    .AccordionPanelTop {
    background-color: #CCCCCC;
    letter-spacing: -0.04em;
    background-image: url(../images/new/spry/meun_top.gif);
    background-repeat: no-repeat;
    padding: 8px 0 0 12px;
    height: 22px;
    font-family: Arial, Helvetica, sans-serif;
    color:#666666;
    font-size: 14px;
    font-weight: bold;
    margin: 0px;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    .AccordionPanelBot {
    background-color: #CCCCCC;
    letter-spacing: -0.04em;
    background-image: url(../images/new/spry/meun_bot.gif);
    background-repeat: no-repeat;
    padding: 8px 0 0 12px;
    height: 21px;
    font-family: Arial, Helvetica, sans-serif;
    color:#666666;
    font-size: 14px;
    font-weight: bold;
    margin: 0px;
    cursor: pointer;
    -moz-user-select: none;
    -khtml-user-select: none;
    /* This is the selector for a Panel's Content area. It's important to note that
    * you should never put any padding on the panel's content area if you plan to
    * use the Accordions panel animations. Placing a non-zero padding on the content
    * area can cause the accordion to abruptly grow in height while the panels animate.
    * Anyone who styles an Accordion *MUST* specify a height on the Accordion Panel
    * Content container.
    * The name of the class ("AccordionPanelContent") used in this selector is not necessary
    * to make the widget function. You can use any class name you want to style an
    * accordion panel content container.
    .AccordionPanelContent {
    letter-spacing: -0.05em;
    background-image: url(../images/new/spry/meun_grey.gif);
    background-repeat: repeat-y;
    padding: 0 0 0 12px;
    font-family: Arial, Helvetica, sans-serif;
    color:#7f879e;
    font-size: 14px;
    font-weight: bold;
    overflow: hidden;
    margin: 0px;
    .AccordionPanelContent2 {
    letter-spacing: -0.05em;
    background-image: url(../images/new/spry/meun_grey.gif);
    background-repeat: repeat-y;
    padding: 0 0 0 12px;
    font-family: Arial, Helvetica, sans-serif;
    color:#7f879e;
    font-size: 14px;
    font-weight: bold;
    overflow: auto;
    margin: 0px;
    height: 200px;
    /* This is an example of how to change the appearance of the panel tab that is
    * currently open. The class "AccordionPanelOpen" is programatically added and removed
    * from panels as the user clicks on the tabs within the Accordion.
    .AccordionPanelOpen .AccordionPanelTab {
    background-color: #EEEEEE;
    /* This is an example of how to change the appearance of the panel tab as the
    * mouse hovers over it. The class "AccordionPanelTabHover" is programatically added
    * and removed from panel tab containers as the mouse enters and exits the tab container.
    .AccordionPanelTabHover {
    color: #555555;
    .AccordionPanelOpen .AccordionPanelTabHover {
    color: #555555;
    /* This is an example of how to change the appearance of all the panel tabs when the
    * Accordion has focus. The "AccordionFocused" class is programatically added and removed
    * whenever the Accordion gains or loses keyboard focus.
    .AccordionFocused .AccordionPanelTab {
    background-color: #3399FF;
    /* This is an example of how to change the appearance of the panel tab that is
    * currently open when the Accordion has focus.
    .AccordionFocused .AccordionPanelOpen .AccordionPanelTab {
    background-color: #33CCFF;

    Just so that you know for the next time, when you give us a URL, there is no need to post your code. This is by far the most preferred method for obtaining our assistance.
    Having said that, place the fillowing in the HEAD section of your document, ensuring that you do have the file in that location
    <script src="SpryAssets/SpryDOMUtils.js"></script>
    Then, near the bottom of the page within the same SCRIPT content as your constructor(s), place the following code
    Spry.$$(".AccordionPanelBot").addEventListener("click", function(){
             Accordion1.closePanel();
    The Spry Element Selector (Spry.$$) requires SpryDOMUtils.js. Here we place an event listener to your last tab with a class name of AccordionPanelBot, which when clicked will close the currently open panel(s).
    I hope this helps.

  • How to draw an image at the center of a JscrollPane

    I have an image that I want to be centered in my JScrollPane. When I zoom-in, I want the image to fill the entire jscrollpane. When I zoom out it returns to the original scale. My problem is, when I open the image, it appears at the upper left corner of the JScrollPane. I want it centered. Also, when I zoom-in, it gets larger than the scrollpane. That is it goes beyond the boundaries of the JScrollpane. The function I am using to draw the image is:
    Image img = imp.getImage();
                   if (img!=null)
                        g.drawImage(img,0,0, (int)(srcRect.width*magnification), (int)(srcRect.height*magnification),
                        srcRect.x, srcRect.y, srcRect.x+srcRect.width, srcRect.y+srcRect.height, null);If I change the initial x,y values from (0,0) to any other value, it grays the upper left corner. So forinstance, if I did the following, the upper left corner of the scrollpane would become gray.
    g.drawImage(img,100,200, (int)(srcRect.width*magnification), (int)(srcRect.height*magnification),
                        srcRect.x, srcRect.y, srcRect.x+srcRect.width, srcRect.y+srcRect.height,null);How can I center my image in the scrollpane?

    When I zoom-in, I want the image to fill the entire jscrollpane. When I zoom out it returns to the original scaleSo why are you using a scroll pane? A scroll pane is used when its contents can potentially be larger than the scrollpane.
    Although it wasn't originally designed for this purpose you can probably use my [Background Panel|http://www.camick.com/java/blog.html?name=background-panel]. It supports displaying an image at its actual size as well as scaled to fit the panel. So you should just be able to toggle the style as required.

  • How to draw horizontal line in smartform after end of the all line items

    Hi Friends,
    I am working on the smartform. I have created TABLE node in Main window.
    i want to draw a horizontal line after end of the main window table node. i mean after printing all the line items of the table, I need to print one horizontal line.
    Could you please help me how to resolve this issue.
    FYI: I tried with the below two options. But no use.
    1. desinged footer area in the table node of the main window.
    2. tried with uline and system symbols.
    please correct me if i am wrong. please explain in detail how to draw horizontal line after end of the main window table.
    this is very urgent.
    Thanks in advance
    Regards
    Raghu

    Hello Valter Oliveira,
    Thanks for your answer. But I need some more detail about blank line text. i.e thrid point.
    Could you please tell me how to insert blank line text.
    1 - in your table, create a line type with only one column, with the same width of the table
    2 - in table painter, create a line under the line type
    3 - insert a blank line text in the footer section with the line type you have created.

  • I accidenttly deleted my notes and the icloud cleared all the message from both ipad and iphone  ...How can i get it back?? If I can ??

    I accidenttly deleted my notes and the icloud cleared all the message from both ipad and iphone  ...How can i get it back?? If I can ??

    Your notes should be stored in your backup, so if you have backed up the iPad and that backup does contain those notes that you deleted, you can try restoring from your backup. If you haven't backed up the iPad since you created those notes, they are gone.
    If you backup with iCloud only, restoring from backup involves erasing the device and then going through the setup all over again and finally restoring from the iCloud backup. This article explains the process quite clearly.
    http://gigaom.com/apple/ios-101-set-up-and-restore-from-icloud-backup/
    If you backup with iTunes, connect the iPad to your computer, launch iTunes and right click on the device name on the left and select - Restore from Backup. But before you do that .... turn off auto sync in iTunes - without connecting the iPad - launch iTunes and go to Edit>Preferences>Devices and check the box at the bottom of that window in order to turn off auto sync.
    Email messages are not stored in your backups.

  • TS1292 I have recently received an iTunes card and after scraping away the panel to get my code the first part of the code is unreadable how do I go about getting a code for the card

    Hi there I have recently been given an iTunes card as a present.i went to use it today to put credit on my account and after scraping away the panel found that I couldn't read part of the code that was on the card how do I go about getting the card activated?

    If the page that you postted from doesn't help then you will need to try contacting iTunes support (you will need to give them as much of the serial number and activation code from the card as you can read) : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then iTunes Cards And Codes

  • I need to know how to edit a drawing - basically remove the arrows and text but at the same time match the background of the existing pic. then re add new text. how do i erase the arrows and text and arrows but match current background of pic. step by ste

    i need to know how to edit a drawing - basically remove the arrows and text but at the same time match the background of the existing pic. then re add new text. how do i erase the arrows and text and arrows but match current background of pic. step by step explanation please beginner

    Please post (a relevant section of) it right on this Forum.

  • How to create a Menu Bar at the bottom of the Panel?

    Hi all,
    I want to insert Menu bar into the bottom of the Panel but it always appears at the top and I want to create a menu at the bottom and in the left so when i click to that menu, all the menu items will appear above like window icon of Microsoft. So can you show me how to do it?
    Thanks!
    Regard,

    Put another JPanel at the bottom and insert your menubar there.

  • I would like to know how to draw up a list in a cell (like a pull-down menu) to ease data capture, but I don't know how to do that  ! Do you get the idea ? Thanks !

    I would like to know how to draw up a list in a cell (like a pull-down menu) to ease data capture, but I don't know how to do that  !
    Do you get the idea ?
    Thanks ever so much !

    the numbers manual can be downlaoded from this website under the Apple support area...
    http://support.apple.com/manuals/#numbers
    What your looking for is written out step by step for drop downs and all other special types of user input starting around page 96 in the '09 manual.
    Jason

Maybe you are looking for

  • Line item not appearing in PGI accounting document

    Hi after complete sales process Sales order---Delivery -PGI-----Billing, when i chked the pgi & click on the Accountiong tab in pgi document only twoo line items appearing instead of three in the document << Moderator message - Everyone's problem is

  • Why can't I erase the songs on my ipod on Itunes?

    I opened up Itunes and it started loading all the music in my library to my ipod. I stopped it, but now i cannot seem to erase the songs from Itunes. Any help or advice will be greatly appreciated. I was thinking if I let all the songs download onto

  • What program would I use to make  Tumblr Theme

    I would like to make my own tumblr theme and Im not sure which adobe program I would use to make one or even if adobe has such a program. I would like to make it so it looks like a magazine sitting on a surface and you drag accross the pages to move

  • Foreign currency  invoice not shown in local currency

    Dear Experts , Can you please help me to resole In my company code currency is INR and my foreign currency is USD , when i posted a invoice in foreign currency it shows in print preview only in foreign currency that is USD but i want to see the local

  • Extending the time that images in slides [single ones] display beyond other

    I am putting together a presentation and while some slides are on screen long enough because I have parts moving in slowly and causing that = when I have a slide with a single image it rushes in and ends fast and I can't seem to slow it down to just