Divider location in JSplitpane

Hi,

I have a Jsplitpane with vertical orientation.

The problem is when the window is minimized the divider moves towards the left and the components on left are not visible.

How can I set the divider's location with resepective the component in the left side.

Thanks,

Rhea

[310 byte] By [Rheaa] at [2007-11-27 6:35:53]
# 1
The JSplitPane respects the minimum size of your components. By setting<component>.setMinimumSize(new Dimension(width,height));for the embedded components you can limit the splitpane movement.
marco@dea at 2007-7-12 18:03:12 > top of Java-index,Desktop,Core GUI APIs...
# 2
You can also use the setResizeWeight(...) method to control sizing.
camickra at 2007-7-12 18:03:12 > top of Java-index,Desktop,Core GUI APIs...