Testing MultiSelct List box for values

  • Thread starter Thread starter Mark A. Sam
  • Start date Start date
M

Mark A. Sam

Hello,

Is there a way to test if a multi-select list box has nothing selected
without iterating through the list?

Thanks and God Bless,

Mark A. Sam
 
Mark A. Sam said:
Hello,

Is there a way to test if a multi-select list box has nothing selected
without iterating through the list?

Thanks and God Bless,

Mark A. Sam

Hi Mark,

If Me!YourListBox.ListIndex = -1 Then
.....
end if

ciao, Sandro
 
Back
Top