Listbox Event

L

Linq Adams via AccessMonster.com

What exactly are you trying to do? The are several events, but the
AfterUpdate event of a combobox/listbox is the event usually used to do
something as a result of a selection being made.
 
J

JimS

I just want to determine if anything's been selected (count) so as to make a
control visible or invisible... Thanks.
 
S

Stuart McCall

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.
 
Top