Checkbox

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have six Checkboxes which I have to clear with a reset button. Is there a
way to put this into an array and have it loop to sat chkbox.checked = false
 
freddy said:
I have six Checkboxes which I have to clear with a reset button. Is there a
way to put this into an array and have it loop to sat chkbox.checked =
false

\\\
Private m_CheckBoxes() As CheckBox = _
{Me.CheckBox1, Me.CheckBox2, ...}
..
..
..
For Each CheckBox In m_CheckBoxes
CheckBox.Checked = False
Next CheckBox
///
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top