how do i hide a list box when it has lost focus
on an after update, I use this code:
Me.txtManufacturer.SetFocus
Me.lstGoToType_AtType.Visible = False
it works fine
__________________________________
but the user may not update the control; they may simply decide to do 'something' else,n which case, I want the list box to go away
i thought i could do this:
Private Sub lstGoToType_AtType_LostFocus()
Me.lstGoToType_AtType.Visible = False
or
Private Sub lstGoToType_AtType_Exit(Cancel As Integer)
Me.lstGoToType_AtType.Visible = False
but for one reason or another, it's not the right approach
thoughts?
(with thanks in advance)
mark