J JimS Jul 16, 2008 #2 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 #3 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.