hello,
well have you added this components in applet using add()method or not if you have not added in the applet then they will notbe visible .
By default the buttons ,textbox, textfield except frame are visible so you dont have to do anything you just add these components in applet.
Button b1 = new Button("One");
Button b2 = new Button("two");
Button b3 = new Button("three");
public void init(){
add(b1);
add(b2);
add(b3);
}
Thanks I hope it is now clear to you.
