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

Use ScrolledComposite.  SWT.V_SCROLL just creates the scroll bars.  It has
no idea how to scroll.

"marc" <m800lmr@xxxxxxxxxxx> wrote in message
news:bf0i29$5f9$1@xxxxxxxxxxxxxx
> 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
>