Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
送信cbo_moduleNameボタンをクリックしてもフィールドが空の場合、エラー メッセージを返そうとしていますが、何も起こりません。
cbo_moduleName
Private Sub btnSubmit_Click() If IsEmpty(cbo_moduleName.Value) Then MsgBox ("Module Name field empty!") Exit Sub End If End Sub
どこで間違いを犯しているのですか?
IsEmptyVarianttype の変数に特別な値が含まれているかどうかを調べますEmpty。
IsEmpty
Variant
Empty
あなたがおそらく意味したのは、文字列が空の文字列かどうかをチェックすることです:
If Len(cbo_moduleName.Value) = 0 Then ... End If