I need to get all controls on a form that are of type x, I'm pretty sure I saw that code once in the past that used something like this:
dim ctrls() as Control
ctrls = Me.Controls(GetType(TextBox))
I know I can iterate over all controls getting children using a recursive function, but wondering if there is something more easier or straightforward, maybe:
Dim Ctrls = From ctrl In Me.Controls Where ctrl.GetType Is Textbox
Kind regards