when creating
applets say i created two Panels, (via Panel p=new Panel)
then i need not specifically write a statement
for it to be added (via add) to the applet GUI
But when creating Frame
say i created two Panels, then i would need
to specifically write a statement for it to
be added (via add) to the Frame GUI.
like add(p); (Panel p = new Panel)
just wanted to reaffirm this......