(I asked the following question on other forums but got n000 answer)
How do I retrieve the .Checked property of a checkbox in a form by cycling thru its controls collection, such as in
Dim AnyCtrl as Control
For AnyCtrl In MyForm.Controls
if TypeOf AnyCtrl Is CheckBox then
?? ...get the "checked" status of the control... ???
Next AnyCtrl
In VB6 there used to be the Controls("CheckBox") filter, which has been dumped in
VB.Net :(, so how do you do the above in .NET ??
TIA