fd.top = new FormAttachment(compRadios, 5, SWT.TOP);
fd.right = new FormAttachment(100, 0);
ok.setLayoutData(fd);
// Scroll-Bereich erzeugen.
ScrolledComposite scroller = new ScrolledComposite(shell, SWT.V_SCROLL | SWT.H_SCROLL);
fd = new FormData();
fd.left = fd.top = new FormAttachment(0, 0);
fd.right = new FormAttachment(100, 0);
fd.bottom = new FormAttachment(compRadios, -5, SWT.TOP);
scroller.setLayoutData(fd);
// Scrollbereich mit Leben f�llen.
createScrollContent(scroller);
// Noch mittig ins vorhandene Fenster setzen.