> Hello,
>
[quoted text clipped - 6 lines]
>
> I tried (in principle)
Try this instead:
Assuming frame is a JInternalFrame refernece, and desktop is a
JDesktopFrame reference.
JPanel panel = new JPanel();
JLabel label = new JLabel("MyLabel");
panel.getContentPane().add(label);
JScrollPane pane = new JScrollPane(panel);
frame.getContentPane().add(pane);
desktop.getContentPane().add(frame);
--Dominic
> JInternalFrame.setContentPane(new JScrollPane())
>
[quoted text clipped - 12 lines]
>
> Falko