cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
stallapp
Level 3

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.
Labels (1)
0 Kudos
(3) Replies
pv7721
Level 20

AFAIK, no it is not possible, unless you have only Custom Panels.
0 Kudos
stallapp
Level 3

I am using Swing based custom panels for my installer. How can I make the Cancel button invisible/remove while installation?

Thanks
0 Kudos
SunnyBoy
Level 6

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
0 Kudos