Please see my image below at the link and then read below it for more details on my problem.

Imagine that is a Basic frame splited into two with a JSplitPane, by default when you resize your frame the gray part changes it’s size, but I would like the white part to resize accordingly to the frame resizing.
Any help into the right direction would be appreciated as I am working on a project now and I am trying out all kind of weird stuff to be prepared for my biggest project set in the new year. 🙂
Regards
Theron
You need to use
setResizeWeightto get the left and right take the extra space or reduce in size on JFrame resize, sample code below:Java Doc for setResizeWeight.
Hope this helps.