M mscertified Jan 7, 2008 #1 Is it possible to display different ControlTipText depending on which row in a listbox is selected?
S Stuart McCall Jan 7, 2008 #2 mscertified said: Is it possible to display different ControlTipText depending on which row in a listbox is selected? Click to expand... 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.
mscertified said: Is it possible to display different ControlTipText depending on which row in a listbox is selected? Click to expand... 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.
M Marshall Barton Jan 7, 2008 #3 mscertified said: Is it possible to display different ControlTipText depending on which row in a listbox is selected? Click to expand... You might get some good ideas from the examples at http://www.lebans.com/tooltip.htm
mscertified said: Is it possible to display different ControlTipText depending on which row in a listbox is selected? Click to expand... You might get some good ideas from the examples at http://www.lebans.com/tooltip.htm