Listbox Event

  • Thread starter Thread starter JimS
  • Start date Start date
J

JimS

When my user selects (or deselects) a row in a listbox, what event(s) fire?
 
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.
 

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