aspose file tools
The moose likes Swing / AWT / SWT and the fly likes JDialog sizing 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 "JDialog sizing" Watch "JDialog sizing" New topic
Author

JDialog sizing

Jennifer Sohl
Ranch Hand

Joined: Feb 28, 2001
Posts: 455
Hello. I have a JDialog that contains a JSplitPane. Initially when the Dialog comes up, just the left hand component has been added to the JSplitPane. When the user presses a button on the left hand component of the JSplitPane, I add the right hand component to the JSplitPane.
My problem, is when the right component is added, you can't see it unless you resize the JDialog.
I want the JDialog to automatically resize when the right hand component is added to the JSplitPane.
How can I accomplish this?
Thanks!
[ April 09, 2003: Message edited by: Jennifer Sohl ]
raj madhuram
Ranch Hand

Joined: Oct 10, 2001
Posts: 71
Try pack() on the JDialog as soon as the right component gets added.
- Raj
Jennifer Sohl
Ranch Hand

Joined: Feb 28, 2001
Posts: 455
Raj,
That worked great!
Thanks again. You've been a great help. Hopefully someday I can return the favor.
Have a GREAT day!
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: JDialog sizing
 
Similar Threads
Resizing in JSplitPane
JSplitPane and its setDividerLocation method
JSplitPane & window resizing
Problem with JSplitPane and JFrame
Dynamically nested JSplitPanes