This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallAnywhere
- :
- InstallAnywhere Forum
- :
- Is it possible to remove the Cancel button install section screens?
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
‎Sep 03, 2012
01:43 AM
Is it possible to remove the Cancel button install section screens?
Hi,
I am using IA 2011 SP4, I would like to know whether is there any way to remove the Cancel button from installation screens?. I see there is way to disable it but I need to remove the button.
Thanks for the help.
I am using IA 2011 SP4, I would like to know whether is there any way to remove the Cancel button from installation screens?. I see there is way to disable it but I need to remove the button.
Thanks for the help.
(3) Replies
‎Oct 16, 2012
05:59 AM
In custom code panel, in panelIsDisplayed method you can use setExitButtonEnabled.
Below is the sample code for your reference.
public void panelIsDisplayed() {
GUIAccess gui = (GUIAccess) customCodePanelProxy
.getService(GUIAccess.class);
// gui.getFrame().setTitle("new title");
gui.setExitButtonEnabled(false);
}
Regards
SunnyBoy
Below is the sample code for your reference.
public void panelIsDisplayed() {
GUIAccess gui = (GUIAccess) customCodePanelProxy
.getService(GUIAccess.class);
// gui.getFrame().setTitle("new title");
gui.setExitButtonEnabled(false);
}
Regards
SunnyBoy