I can't seem to get my searchPanel to show up on my JFrame and I don't know why, its not conflicting with any other JFrames and also I wished to know that lets say I added a second Panel to the south region of the boarder layout how would I get that layout to display nicly with the other???
[ December 13, 2004: Message edited by: Chase Becicka ]
Michael Dunn
Ranch Hand
Joined: Jun 09, 2003
Posts: 4632
posted
0
What about moving the labels?
if ok, change this private void addComponents(...) { gbc.anchor = gbc.WEST; //<----------- gbc.gridwidth = gbc.RELATIVE; ... }
to this private void addComponents(...) { gbc.anchor = gbc.EAST; //<------------ gbc.gridwidth = gbc.RELATIVE; ... }
Craig Wood
Ranch Hand
Joined: Jan 14, 2004
Posts: 1535
posted
0
Michael Dunn
Ranch Hand
Joined: Jun 09, 2003
Posts: 4632
posted
0
Well, I'm confused.
The original post had WEST, now it's EAST, and a different message.