Listbox Event

  • Thread starter Thread starter JimS
  • Start date Start date
I just want to determine if anything's been selected (count) so as to make a
control visible or invisible... Thanks.
 
JimS said:
I just want to determine if anything's been selected (count) so as to make
a
control visible or invisible... Thanks.

Me.ControlName.Visible = (Me.Listbox.ItemsSelected.Count > 0)

in the Listbox's AfterUpdate event, as Linq said.
 
Back
Top