nsDialogs - NSD_SetTextLimit, NSD_Check
Hi. I'm relatively new to the whole nsDialogs headers thing and there doesn't seem to be much documentation on how to use some of the newer macros. How would I use NSD_SetTextLimit and NSD_Check? I want to use NSD_check to check/uncheck radio buttons and settextlimit to limit the max amount of characters that can be input into a textbox.
Right now, I have this code to have radio button $RB_STATIC checked on load. I'm wondering if I can simplify this with NSD_Check?
${NSD_CreateRadioButton} 50u 8u 20% 8u "Static"How would I use NSD_SetTextLimit here?
>Pop $RB_STATIC
GetFunctionAddress$0 SelectStatic
nsDialogs::OnClick /NOUNLOAD $RB_STATIC $0
SendMessage $RB_STATIC${BM_SETCHECK} ${BST_CHECKED} 0 ;check this box by default
53u 33u 65u 12u $ipaddr
Pop $TX_IP
>
Also, how can I set up 2 independent sets of radio buttons? (If i check one, it unchecks the other, but I want to have 2 sets of radio buttons)Thanks in advance...