Search:

Type: Posts; User: ChristopherLowe

Search: Search took 0.10 seconds.

  1. Replies
    7
    Views
    1,753

    Re: Not really Understanding JPanel..

    @HelloWorld922 - Oh cool! So there you have it, it can be done. I did actually try this out before posting but didn't realize you needed to setBounds() for it to work. Good spot.

    @Tjstretch -...
  2. Replies
    7
    Views
    1,753

    Re: Not really Understanding JPanel..

    StringBuffer b = new StringBuffer();
    b.append(myInteger);
    JTextArea myTextArea = new JTextArea(b.toString());


    There are of course many, MANY ways you could this. I like stringbuffers. You...
  3. Replies
    7
    Views
    1,753

    Re: Not really Understanding JPanel..

    Yeah it's bit of a pain huh. Personally, I hate working on Java GUI's. Much rather work with VB.NET for graphical interfaces. Think of JPanel as a top level container, something that holds other...
Results 1 to 3 of 3