Author
where is the frame and its components
bharani rao
Ranch Hand
Joined: Apr 06, 2009
Posts: 164
hi,
i have the following code which has 3 Jlabels, 3 jtextfield and one jbutton.
but when i run thre are no components present.
when i click and drag it ( resizing manually,) all the componets are there.
what should i do to solve this problem
thanks in advance
when i run it is showing some minute thing on the left top corner.
Swastik Dey
Ranch Hand
Joined: Jan 08, 2009
Posts: 1196
JDialogTest frame = new JDialogTest();
The above line will invoke the default constructor of the class. But your entire initialization code is inside the method named init(). So either you need to define the constructor and put the initialization code there or you need to call the init method.
frame.init();
Swastik
bharani rao
Ranch Hand
Joined: Apr 06, 2009
Posts: 164
hi swastik,
i tried but it did not work... same problem.
thank you in advance
Swastik Dey
Ranch Hand
Joined: Jan 08, 2009
Posts: 1196
Ulf Dittmer
Marshal
Joined: Mar 22, 2005
Posts: 35253
posted Jul 31, 2009 06:28:41
0
There seems to be nothing applet-specific about the question; moving to the Swing forum.
Android apps – ImageJ plugins – Java web charts
bharani rao
Ranch Hand
Joined: Apr 06, 2009
Posts: 164
thank you swastik,,
it is working..
thank you
subject: where is the frame and its components