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"
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 How would I use NSD_SetTextLimit here?${NSD_CreateText} 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...