View Single Post
  #3 (permalink)  
Old 01-04-2008, 06:09 AM
rpwtdj's Avatar
rpwtdj rpwtdj is offline
Member
 
Join Date: Dec 2007
Posts: 15
rpwtdj is on a distinguished road
Send a message via MSN to rpwtdj
1. You need to add a layout manager to your panel first.
Code:
setLayout(new BorderLayout());
and then
Code:
add(yourLabel,BorderLayout.WEST);
I think this can apply.

2. You can use 'javax.swing.JSplitPane' to implement your app.
Reply With Quote