i want to disable few check boxes in a checkedlistbox. what should i do?
rexdon 0 Newbie Poster
Recommended Answers
Jump to PostAs pritishdeshmuk mentioned ,
just add the condition
if (j <= 10) { for (int j1 = j; j1 < 20; j1++) { cks[j].Enabled = false; } }
Hope this will help you
All 4 Replies
Reply to this topic Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.