Do someone know how to hide such help image from my custom wizard?
alt text http://img268.imageshack.us/img268/6485/newprojectwt.png
setHelpAvailable(false) doesn’t work, it hides “rectangular help button”, not this image.
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
That does confirm this thread, developed by this thread:
The visibility of this context help button (with the question mark) is controlled by the static method
TrayDialog.setDialogHelpAvailable().If called with parameter false no JFace-dialog will show the help button. However, it can be make available individually in a dialog derived from
TrayDialogby callingsetHelpAvailablewith parameter true.The context help button is part of the
TrayDialog.If you do not use
WizardDialogto display the wizard your dialog class has to be derived fromTrayDialog.