Hello,

it seems that there is no UserControl 'type' of control? - so we can't write

Code:
For Each C In frm.Controls
    If TypeOf C Is TextBox Or TypeOf C Is ComboBox Or TypeOf C Is UserControl Then
        'do stuff
    End If
Next
at least following code does skip over UserControl (in do stuff part), or i am missing something?