Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Newcomers » Newcomers » How do I add scrollbars to the content of a TabFolder?
How do I add scrollbars to the content of a TabFolder? [message #157448] Mon, 19 June 2006 15:05
Leonard Sutton is currently offline Leonard SuttonFriend
Messages: 1
Registered: July 2009
Junior Member
How do I add a working scrollbar to the content of a TabFolder?

I have tried:

TabFolder tabFolder = new TabFolder(this, SWT.PUSH);

Composite aComposite = new Composite(tabFolder,
SWT.H_SCROLL|SWT.V_SCROLL, getEditor());



---------- ALSO TRIED------------


TabFolder tabFolder = new TabFolder(this, SWT.PUSH);

Composite aComposite = new Composite(tabFolder, SWT.NONE, getEditor());

TabItem aTabItem = new TabItem(tabFolder, SWT.H_SCROLL|SWT.V_SCROLL);
aTabItem.setText("Http Services");
aTabItem.setControl(aComposite );


--------------------------------------
Both options give me scrollbars that do not move the content. It is like
the scrollbars are in a different plane than the content so nothing
scrolls. Can anyone help me. By the way I am using only SWT libraries in
eclipse 3.1.2
Previous Topic:Console not available...
Next Topic:How to export Search results (with preserved tree structure)?
Goto Forum:
  


Current Time: Fri Apr 26 07:13:18 GMT 2024

Powered by FUDForum. Page generated in 0.10146 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top