Hi,
I am very new to access. I am asking something basic.
How to check if variable strAbc has a value/is not an empty string? I tried isNull and isEmpty and both returns false whether strAbc is assigned "" or "a".
Thanks,
Robin
I am very new to access. I am asking something basic.
Code:
Private Sub Command12_Click()
Dim strAbc As String
strAbc = "a"
MsgBox IsNull(strAbc)
MsgBox IsEmpty(strAbc)
End Sub
Thanks,
Robin
Comment