Link to home
Start Free TrialLog in
Avatar of learn
learn

asked on

Why I cannot see the label:

Why I cannot see the label:

class MyFrame extends Frame{
public MyFrame(){
Container container = new Container();
Label label = new Label("1111111");
container.add(label);
Avatar of ellandrd
ellandrd
Flag of Ireland image

why not just do this:

container.add(new Label("1111111"));
ASKER CERTIFIED SOLUTION
Avatar of Mick Barry
Mick Barry
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
did you add :   this.setVisible(true);    ?