views:

167

answers:

1

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?

+1  A: 

ShowWindow $handle <0|1>

Anders
That will hide the window though... I just want to hide a textbox.
Cuga
showwindow $TextBox1 0 will only hide the editbox
Anders
Awesome. Thank you!
Cuga