In order to open a modal dialog, you need to pass a parent window, and pass the necessary flags for the dialog to be modal of course.
Depending on where you are in the e
The piece of code from the previous answer will work. However, keep in mind you can only open your dialog from the UI thread. If you are opening the dialog from a different thread, e.g. a background process, you need to do something like this:
PlatformUI.getWorkbench().getDisplay().asyncExec(new Runnable() {
public void run() {
Shell activeShell = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell();
}
});
Otherwise you will get an exception when creating the dialog.