I have a form that creates a row of checkboxes depending on the type of analysis the user wants to perform on the incoming file. I need to be able to determine if the checkbox is "checked" but I don't know how to do that when the controls are created at runtime.
So right now I have a loop going through all the controls on the form and selecting the appropriate case: for instance chkbox1, combobox1, etc. Now I can access the values of the control by using
Me.Controls.Item(chkbox1)
but after that the only thing resemebling checked is .Text which wouldn't be accurate.
So my question is: how do you workaround the .Checked property of a checkbox when it is created at runtime?