A
alex
Using Access ’03…
I need help doing something that I’ve done a thousand times!
An hour before this post the code below worked:
Private Sub txtTest_Enter()
'check to see if lstConveyed is null
If IsNull(lstConveyed) Then
MsgBox ("Please choose Conveyed Message")
lstConveyed.SetFocus
Else
End If
End Sub
All of a sudden I’m getting “Invalid use of property” Compile error on
the msgbox.
I must have done something to the form because I cannot even place a
simple msgbox in the on click event of a command button. I get the
same error.
Thoughts?
alex
I need help doing something that I’ve done a thousand times!
An hour before this post the code below worked:
Private Sub txtTest_Enter()
'check to see if lstConveyed is null
If IsNull(lstConveyed) Then
MsgBox ("Please choose Conveyed Message")
lstConveyed.SetFocus
Else
End If
End Sub
All of a sudden I’m getting “Invalid use of property” Compile error on
the msgbox.
I must have done something to the form because I cannot even place a
simple msgbox in the on click event of a command button. I get the
same error.
Thoughts?
alex