Here is another attempt to get the comments to show up in red.
Here is what is wrong - I have taken your code and added my comments in
red:
tabFolder_ = new TabFolder(parent, SWT.NONE);
pageBook_ = new PageBook(tabFolder_, SWT.NONE);
// tabFolder_.setLayout(new FillLayout()); <- remove this line - like the ScrolledComposite, the
<- TabFolder lays out its own children and setting a layout
<- in the TabFolder will either do nothing or cause flash
// Create a page....
//
TabItem propTab = new TabItem(tabFolder_, SWT.NONE);
propTab.setText("Properties");
propTab.setControl(pageBook_);
ScrolledComposite scp = new ScrolledComposite(pageBook_, SWT.V_SCROLL);