aspose file tools
The moose likes Swing / AWT / SWT and the fly likes where is the frame and its components Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "where is the frame and its components" Watch "where is the frame and its components" New topic
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
    
    7
There seems to be nothing applet-specific about the question; moving to the Swing forum.


Android appsImageJ pluginsJava web charts
bharani rao
Ranch Hand

Joined: Apr 06, 2009
Posts: 164
thank you swastik,,

it is working..


thank you
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: where is the frame and its components
 
Similar Threads
ActionListener problem
Opening a new window.
regarding JTable issue
JFrame
Help with ActionListener