Search:

Type: Posts; User: helloworld922

Search: Search took 0.10 seconds.

  1. Replies
    7
    Views
    2,091

    Re: JApplets and JFileUploader

    ^^ what Darryl said.

    Build your GUI off of a JPanel/JComponent, then you can simply add it to your applet if you want to make an Applet/JApplet, or you can set it to the content pane of your...
  2. Replies
    7
    Views
    2,091

    Re: JApplets and JFileUploader

    In your paint method, set the color of the graphics object.

    public void paint(Graphics g)
    {
    g.setColor(Color.red); // sets the color to red
    g.setColor(new Color(255, 0, 0)); // also...
Results 1 to 2 of 2