フォームにコントロールタイプがあるかどうかをチェックする関数を作成しましたが、機能せず、どこに問題があるのかわかりません。
これは私が書いたコードです:
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」が定義されていません。