Re: JScrollPane and JViewport
Posted By:
J_R
Posted On:
Tuesday, September 4, 2001 02:27 AM
well add scp to your scrollpane first
scp = new JScrollPane(yourPanel,JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
then setViewPort
and then
add srollpane
add( scp );
/*******************/
if this does not work then
setLayout of your mainpanel null
in this way
setLayout(null);
then add the scroll pane
and then write
scp.setBounds(x, y, width, height);