I'm trying to add a verticle scroll bar to my scrollPane so it can go up and down the list as needed what sort of lines do I need to add to get this to work.
Code:
private void refreshScrollPane(int panel)
{
if(panel == 1)
{
directoryPanelA.remove(scrollPane1);
invalidate();
scrollPane1 = new JScrollPane(directoryAList);
directoryPanelA.add(scrollPane1);
}
if(panel == 2)
{
directoryPanelB.remove(scrollPane2);
invalidate();
scrollPane2 = new JScrollPane(directoryBList);
directoryPanelB.add(scrollPane2);
}
}
Comment