Работа со стандардни контроли
CheckBox
и со
RadioButton
if checkBox1.Checked=true then showmessage('Da') else showmessage ('Ne'); RADIOBUTTON После поставување на три RadioButton - a од палетата со компоненти Standard, со двоен клик на секој од нив се внесува следниот код поединечно : На двоен клик на RadioButton1 if radiobutton1.Checked=true then showmessage('Da'); На двоен клик на RadioButton2 if radiobutton2.Checked=true then showmessage('Ne'); На двоен клик на RadioButton3 if radiobutton3.Checked=true then showmessage('Mozebi'); |