Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Eclipse Projects » Standard Widget Toolkit (SWT) » Wizard not Displaying Second Page(SWT Wizard WizardPage)
icon9.gif  Wizard not Displaying Second Page [message #1698942] Fri, 19 June 2015 04:39
Mike Standfuss is currently offline Mike StandfussFriend
Messages: 3
Registered: June 2015
Junior Member
Hi I have been having fits with creating a SWT Wizard correctly.

I have created my wizard which currently has three pages. The first page shows up just fine, but any page afterwards displays as blank. I can change the order of the pages and each one works fine when its the first page but every subsequent page breaks.

I have found a bunch of others having the same issue and it seems to stint from using the parent Composite passed into createControl to setControl, but I am not doing that.

code example:
@Override
public void createControl(Composite parent) {
Composite container = new Composite(parent, SWT.NULL);
container.setLayout(new FillLayout(SWT.HORIZONTAL));

composite = new ClientProductSelectionComposite(container, SWT.FILL);
setControl(container);
}

This has left me scratching my head for multiple hours trying to troubleshoot why its not working correctly... Is there something else I am missing?
Previous Topic:The submenu is present in the UI (I'm able to see it). But, when I try to access it programmatically
Next Topic:Combo Autill Based On User Entry
Goto Forum:
  


Current Time: Sat Apr 27 04:32:29 GMT 2024

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

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

Back to the top