Cursor-sensitive control tiptext in listbox ?

  • Thread starter Thread starter mscertified
  • Start date Start date
M

mscertified

Is it possible to display different ControlTipText depending on which row in
a listbox is selected?
 
mscertified said:
Is it possible to display different ControlTipText depending on which row
in
a listbox is selected?

Create a listbox called List0. Make sure it shows some data. Set its OnClick
event to:

Private Sub List0_Click()
With Me.List0
.ControlTipText = .value & " Tip Text"
End With
End Sub

The click event for a listbox fires when the user selects with either the
mouse or keyboard.
 
Back
Top