No items selected in multi-select list box

  • Thread starter Thread starter Jim Pockmire
  • Start date Start date
J

Jim Pockmire

How can I test to see if no items have been selected in a multi-select list
box?
 
Use a statement like this:

If Me.NameOfYourListbox.ItemsSelected.count > 0 then
'do something
Else
'do something else
End If
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top