Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Standard Widget Toolkit (SWT) » Standalone JFace wizards don't work
Standalone JFace wizards don't work [message #439738] Thu, 15 July 2004 15:29
Eclipse UserFriend
Originally posted by: lordfoom.magicmail.co.za

JFace wizards have broken my heart. They seem so promising, but try as I
might, I can't get them to work. More precisely, the contents of any page
after the first simply don't display.

Any help would be appreciated as I'd really prefer to stick to SWT and not
switch back to swing.

I can't even get the following to work:

from StartPage.java:

public void createControl(Composite parent) {
Composite layoutComposite=new Composite(parent, SWT.NONE);
GridLayout layout = new GridLayout();
layout.numColumns=3;

layoutComposite.setLayout(layout);

new Label(layoutComposite, SWT.LEFT).setText("test");
new Label(layoutComposite, SWT.LEFT).setText("test");
new Label(layoutComposite, SWT.LEFT).setText("test");

}

*************
from EndPage.java:
pu
Previous Topic:What's happening when closing a CTabItem?
Next Topic:Listener for radio buttons
Goto Forum:
  


Current Time: Fri Apr 19 23:14:27 GMT 2024

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

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

Back to the top