nsdialogs

Invisible form fields in NSIS?

Is it possible to create invisible form fields in an NSIS installer? I'm using nsDialogs and currently have a checkbox that toggles some fields from to readonly/non-readonly by using: SendMessage $TextBox1 ${EM_SETREADONLY} 1 0 I'd like to make this control visible / not visible. Is this possible? How? ...

how to create progress bar using nsDialogs?

I want to create a progress bar for my installer which will show the progress of my installation process.I know a command as ${NSD_CreateProgressBar} in nsDialogs to create a progress bar in nsis script. But I am unaware of how to use it and how to invoke the same in my script. Any kind of help in respective subject will be appreciated.....

Conditional Display of pages in NSIS using nsDialog

I have added a custom page to my installer created using nsDialogs, however, the page is only necessary to be displayed to one of my InstType options. InstType "Default" # 1 InstType "Developer" # 2 In the example above, I'd like the extra page to be shown to only developers. What is the best practice? Inspect some attribute to det...