M
Mr. X.
Hello.
I am using visual editor with eclipse.
Eclipse version 3.3.3.1
VE version 1.3
JRE 1.6.
For some reason, I don't know,
the program refuse to handle with gridBagLayout.
i.e :
setLayout(new GridBagLayout()) - return to an error :
(There is "!" sign at to left corner of the main design container object,
and when mouse on it I see :
.... ClassNotFoundException(GridBagLayout)
SetLayout(new GridLayout() is fine.
When insted of new GridLayout(), I did :
GridBagLayout gbl;
gbl = new GridBagLayout();
....
setLayout(gbl);
I got the message :
IllegalArgumentException Expression "gbl" is too complicated
Why so ?
Thanks
I am using visual editor with eclipse.
Eclipse version 3.3.3.1
VE version 1.3
JRE 1.6.
For some reason, I don't know,
the program refuse to handle with gridBagLayout.
i.e :
setLayout(new GridBagLayout()) - return to an error :
(There is "!" sign at to left corner of the main design container object,
and when mouse on it I see :
.... ClassNotFoundException(GridBagLayout)
SetLayout(new GridLayout() is fine.
When insted of new GridLayout(), I did :
GridBagLayout gbl;
gbl = new GridBagLayout();
....
setLayout(gbl);
I got the message :
IllegalArgumentException Expression "gbl" is too complicated
Why so ?
Thanks