I have a list box on a form that is populated by a query. I have set up the list box so that when double clicking on a row, it opens an additional form and populates it based on the row that was clicked on.
I would like to create some sort of error handling for when the a user double-clicks on the list box when it is empty but I am not really sure where to get started.
I was trying something like the below but cleary need further assistance.
If Restructuring_List.Column(0) = Null Then
MsgBox "No restructurings available to modify"
End If