[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.platform.swt] scrollable multipage
|
- From: m800lmr@xxxxxxxxxxx (marc)
- Date: Tue, 15 Jul 2003 09:38:17 +0000 (UTC)
- Newsgroups: eclipse.platform.swt
- Organization: http://news.eclipse.org
- User-agent: NewsPortal/0.25 (http://florian-amrhein.de/newsportal/)
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