PDA

View Full Version : Using NSD_CreateCheckBox


Sentack
21st April 2008, 18:09
I'm new to making an installer with NSIS and so far, using the NSD library has been a blessing in building simple custom pages. One problem I've been having lately is identifying a way to 'gray out' a check box. Perhaps I have to use more conventional methods of making a page then use the NSD library but what I want to do is have a checkbox that is in the off or on state but grayed out from user input, that is, they can't change the state but need to be aware of what the current state is. It doesn't seem to me that NSD_SetState has an option for "Grayed out". Any ideas?

Anders
21st April 2008, 18:28
EnableWindow

Sentack
21st April 2008, 19:28
Ah, perfect. Thanks a ton.