Have a problem creating text control using nsDialogs.
I want to have a border, like on the screenshot. Have no idea what style I need to use. Someone knows?
I use this code to create control... but there is no border... WS_BORDER doeasnt work in nsis...
Var /Global SN_Edit1
${NSD_CreateText} 20u 50u 45u 12u "1234"
Pop $SN_Edit1
${NSD_SetTextLimit} $SN_Edit1 "4"
${NSD_AddStyle} $SN_Edit1 ${WS_CHILD}|${WS_VISIBLE}|${WS_TABSTOP}|${ES_CENTER} -Pawel