| Author |
First time using JApplet, applet not initialized?
|
Vaughn Stewart
Greenhorn
Joined: Feb 03, 2012
Posts: 1
|
|
Below is the client class for the project I'm doing,
this is the first time we've had to use applets instead of
a JFrame, I have no idea why it won't run, any ideas?
import javax.swing.*;
import java.awt.*;
import javax.swing.JApplet;
public class ConferenceClient extends JApplet
{
private ConferenceGUI gui;
private Container c;
final int WIDTH = 700;
final int HEIGHT = 250;
public void init()
{
gui = new ConferenceGUI();
c = getContentPane();
c.setLayout(new BorderLayout());
c.add(gui,null);
c.setSize(WIDTH,HEIGHT);
}
}
|
 |
Darryl Burke
Bartender
Joined: May 03, 2008
Posts: 4167
|
|
Vaughn Stewart wrote:I have no idea why it won't run, any ideas?
ItDoesntWorkIsUseless. TellTheDetails.
That said, I've never seen a null constraint passed when adding a component to a BorderLayout. Have you read this? Also, don't setSize(...) -- the layout manager takes care of that.
And welcome to the Ranch!
|
luck, db
There are no new questions, but there may be new answers.
|
 |
 |
|
|
subject: First time using JApplet, applet not initialized?
|
|
|