I've got a simple command which closes a form and opens another with information based on a selection made in a list box. Somehow I want to make sure they have made a selection before the form is closed.
I thought this was correct, but it seems not to be:
If Me.NetwerkenListBox <> Null Then
DoCmd.Close
End If
What's wrong?