Archive: NSD_CB_AddString not working in Windows 2000?


NSD_CB_AddString not working in Windows 2000?
I created an installer that works perfectly in Windows XP, Windows Vista and Windows 7.

However, in Windows 2000, the droplist in one of the pages, that is populated by NSD_CB_AddString, shows up empty.

Is this a known limitation in Windows 2000 (or nsDialogs)?

Or should I look for a bug in my NSIS script?

Thanks.


Make sure you've specified a large enough height. The height of the combo box sets the height of the open pop-up list and not the one line edit box.


Originally posted by kichik
Make sure you've specified a large enough height. The height of the combo box sets the height of the open pop-up list and not the one line edit box.
That was it. I increased the height of drop list from 12u to 120u and now it works on Windows 2000 as well. Thank you!