Randomn is preciesly what it sounds like.
I am only 16 an having worked with java for the few years that I have my
understanding is rather lax. However, I have seen this problem happen
with a program like the following example
class fred
{
public static void main(String[] args)
{
Frame eric = new Frame("I'm eric");
GridBagLayout GBL = new GridBagLayout();
GridBagConstraints GBC = new GridBagConstraints();
eric.setLayout(GBL);
/*
* Frame, gridbag simple
*/
List list = new List();
/*
* List smpl
*/
GBC.gridx = 0;
GBC.gridy = 0;
GBC.gridwidth = 1;
GBC.gridheight = 1;
eric.add(list, GBC);
/*
* Simplest GridBagConstraints implementation
*/
eric.pack();
eric.show();
}
}
As you can see that is a very simple application and it has been known
to "Randomly" do such things
Suggestions????
Thanx
Loki
\0/ - Eureka
0 |
/|\ / \
/ \
|