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
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎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
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 03, 2012
02:47 PM
AFAIK, no it is not possible, unless you have only Custom Panels.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Sep 04, 2012
05:20 AM
I am using Swing based custom panels for my installer. How can I make the Cancel button invisible/remove while installation?
Thanks
Thanks
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎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
