[RESOLVED] CheckBox [] problem
here is my problem, i create 5 CheckBoxes at the runtime
and i added a new EventHandler for CheckStateChanged the problem is when i click on the checkbox there is nothing to identify this one only
is there is any possible way to process the EventHandeler only on the checkbox only that i clicked
thanks alot
:wave:
Re: [RESOLVED] CheckBox [] problem
Please ask unrelated questions in separate threads. One thread per topic and one topic per thread.
To add a control to a container, e.g. a Form, you call the Add method of the container's Controls collection, e.g. Me.Controls.Add. To remove a control from a container you would...
Make sure you dispose the control also if you're finished with it.
Re: [RESOLVED] CheckBox [] problem