Hello 
I created a custom WizardDialog and a custom Wizard. The problem is that I can't find how to activate the progress monitor available in the wizard. I set the needsProgressMonitor to true but it doesn't show when I start the wizard dialog :
My code is :
ImpactGenerationWizard wizard = new ImpactGenerationWizard();
wizard.setWindowTitle(wizardTitle);
wizard.setHelpAvailable(false);
wizard.addPages(impacts);
wizard.setNeedsProgressMonitor(true);
ImpactGenerationWizardDialog wd = new ImpactGenerationWizardDialog(shell, wizard);
wd.open();
I read something about using the wd.run(fork, cancelable, runnable) but I don't really understand how it works.
Any help will be appreciated.
Thank you