我创建了一个函数来检查我的表单中是否有控件类型,但是它没有用,我不知道问题出在哪里。
这是我写的代码:
Private Function testIfControlExists(ByVal _Control As Control)
For Each c As Control In Me.Controls
If TypeOf c Is _Control Then
Return True
End If
Next
Return False
End Function
这是我收到的错误消息:
错误 1 类型“_Control”未定义。