I'm having issues with the following code that works on a command button but not on the after update of the list box. I really need it attached to the after update listbox. Any ideas what I'm missing?
Code:
Private Sub lstOrgRes_AfterUpdate()
Dim ctlOrgReg As Access.Control
Set ctlOrgReg = Me.lstOrgRes
If ctlOrgReg.ItemsSelected.Count > 0 Then
MsgBox "w00t"
Else
MsgBox "BS"
End If
End Sub