This week's book giveaway is in the Open Source Projects forum. We're giving away four copies of Eclipse Collections Categorically: Level up your programming game and have Donald Raab on-line! See this thread for details.
Hi, I put a JScrollPane at the WEST side of a JFrame. However, the space allocated for my JScrollPane is fixed. How can i allow this 'WEST' space to be resize by using a mouse? Any suggestion is welcome.
The easiest way would be to use a JSplitPane. One way to do it would be to put the component you had on the WEST on the left side of the split pane, then the component you had in the CENTER on the right side of the split pane. Then you could just add the split pane into the CENTER of your BorderLayout. Jeff