displaying checked itmes
Visual Basic
2
Posts
2
Posters
0
Views
1
Watching
-
i have ten(10) checkboxes on my application, users can only select or check 6 of these checkboxes. i would like to be able to display those 6 checked items on 6 labels after the click of a button. could you help me with the code for this. chiku
-
i have ten(10) checkboxes on my application, users can only select or check 6 of these checkboxes. i would like to be able to display those 6 checked items on 6 labels after the click of a button. could you help me with the code for this. chiku
Do it with array of check boxes and run over it. if Chk(i).checked=true then msgbox (chk(i).text)