G Guest Mar 15, 2005 #1 How do I check if a list box has at least one item selected before the record is saved? Thanks, Melanie
How do I check if a list box has at least one item selected before the record is saved? Thanks, Melanie
J Jeff Conrad Mar 15, 2005 #2 Try, If Me.lstMyListBox.ItemsSelected.Count = 0 Then ' No selections made Else ' Selection made End If
Try, If Me.lstMyListBox.ItemsSelected.Count = 0 Then ' No selections made Else ' Selection made End If
G Guest Mar 15, 2005 #3 Jeff, Thanks so much. It worked! Melanie Jeff Conrad said: Try, If Me.lstMyListBox.ItemsSelected.Count = 0 Then ' No selections made Else ' Selection made End If Click to expand...
Jeff, Thanks so much. It worked! Melanie Jeff Conrad said: Try, If Me.lstMyListBox.ItemsSelected.Count = 0 Then ' No selections made Else ' Selection made End If Click to expand...