count of checkbox checked | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

count of checkbox checked

i'm trying to get number of check time of my checkbox. i want to show these check times into the textbox. i tried this but it didn't work int count=0; private void checkBox1_CheckedChanged(object sender, EventArgs e) { if (checkBox1.Checked == true) count++; }

3rd Mar 2019, 2:20 PM
mordorminer
mordorminer - avatar
1 Answer
0
i forgot to write the textbox part.
3rd Mar 2019, 2:23 PM
mordorminer
mordorminer - avatar