[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Newsgroup Home]
[news.eclipse.platform.swt] scrollable multipage

hi,

i have written a plugin how contains a multipageeditor:

....
void createPageTemp(){
 Composite a = new Composite(getContainer(),SWT.V_SCROLL);

 Button g = new Button(a,SWT.PUSH);
 g.setBounds(0,0,100,100);
 g.setText("wt");

 int index = addPage(a);
 setPageText(index, "Configuration");
}
....


the problem is, that V_Scroll did not work.

can anyone tell me how to solve this ?

mfg marc