When my user selects (or deselects) a row in a listbox, what event(s) fire?
L Linq Adams via AccessMonster.com Jul 15, 2008 #2 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.
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 Jul 16, 2008 #3 I just want to determine if anything's been selected (count) so as to make a control visible or invisible... Thanks.
I just want to determine if anything's been selected (count) so as to make a control visible or invisible... Thanks.
S Stuart McCall Jul 16, 2008 #4 JimS said: I just want to determine if anything's been selected (count) so as to make a control visible or invisible... Thanks. Click to expand... Me.ControlName.Visible = (Me.Listbox.ItemsSelected.Count > 0) in the Listbox's AfterUpdate event, as Linq said.
JimS said: I just want to determine if anything's been selected (count) so as to make a control visible or invisible... Thanks. Click to expand... Me.ControlName.Visible = (Me.Listbox.ItemsSelected.Count > 0) in the Listbox's AfterUpdate event, as Linq said.