If TypeOf _Control Is TextBox Then ... ElseIf TypeOf _Control Is Label Then ... ElseIf TypeOf _Control Is ListBox Then ... ElseIf ... ... End If
if (_Control is TextBox) { ... } else if (...) { }