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
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: How to disable cancel button of windows?
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
‎Jun 18, 2010
01:39 AM
How to disable cancel button of windows?
Dear all,
I would like to try to disable cancel button when installing.
But I can only disable cancel button of IS.
How can I disable cancell button of window?
I would like to try to disable cancel button when installing.
But I can only disable cancel button of IS.
How can I disable cancell button of window?
(4) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jun 23, 2010
01:54 AM
I try to use the code of http://www.installsite.org/pages/en/isp_ui.htm
The section "Disable Close Box on Main Window" has code provided, but it doesn't work.
Do anyone know how to modify it?
The section "Disable Close Box on Main Window" has code provided, but it doesn't work.
Do anyone know how to modify it?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 17, 2010
06:37 AM
Did anyone get this working??
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 19, 2010
01:27 AM
I had created a custom action in VB for disabling cancel button.
const msiMessageTypeCommonData = &H0B000000
Set oRecord = Session.Installer.CreateRecord (2)
oRecord.IntegerData(1) = 2
oRecord.IntegerData(2) = 0
Session.Message msiMessageTypeCommonData, oRecord
I added this as the first action in Execute sequence.
const msiMessageTypeCommonData = &H0B000000
Set oRecord = Session.Installer.CreateRecord (2)
oRecord.IntegerData(1) = 2
oRecord.IntegerData(2) = 0
Session.Message msiMessageTypeCommonData, oRecord
I added this as the first action in Execute sequence.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Jul 23, 2010
12:09 PM
Any pointers for doing it through Installscript??