Public Sub checkArrayBlank()
Dim arr() As String ' 配列
If (Not arr) = -1 Then
MsgBox "配列が空です。", vbInformation
Else
MsgBox "配列が空ではありません。", vbInformation
End If
End Sub
実行結果
配列が空でない場合
サンプルコード
Public Sub checkArrayBlank()
Dim arr() As String ' 配列
ReDim arr(1) ' 要素を確保
If (Not arr) = -1 Then
MsgBox "配列が空です。", vbInformation
Else
MsgBox "配列が空ではありません。", vbInformation
End If
End Sub
コメント