Simultaneous scrolling in multiple frames
I have a JDesktopPane with a bunch of JInternalFrames. When the user scrolls any one of the frames, I want the other frames to all scroll in the same way at the same time. What's the best (or easiest) way to make this happen?
[233 byte] By [
aadwighta] at [2007-11-27 10:06:55]

# 2
Share the scrollbar model. Something like:
JScrollPane scrollPane = new JScrollPane(...);
BoundedRangeModel model = scrollPane.getVerticalScrollBar().getModel();
JScrollPane scrollPane2 = new JScrollPane(...);
scrollPane2.getVerticalScrollBar().setModel(model);