tooltips en listboxes

27/07/2005 - 17:49 por gabriel | Informe spam
¿Cual puede ser la forma de hacer que en el mouseover sobre un item de un
listbox se muestre un tooltip con el texto del item cuando la lista no es lo
suficientemente ancha como para mostrar todo el texto?

Muchas Gracias

Preguntas similare

Leer las respuestas

#1 Ch0rY
28/07/2005 - 12:34 | Informe spam
Lo tienes en la misma ayuda del .Net

ms-
help://MS.VSCC.2003/MS.MSDNQTR.2003...mwindowsfo
rmslistboxclassindexfrompointtopic.htm


Private Sub ListBox1_MouseMove(ByVal sender As Object, ByVal e As
System.Windows.Forms.MouseEventArgs) Handles ListBox1.MouseMove
Dim lb As ListBox = CType(sender, ListBox)
Dim pt As New Point(e.X, e.Y)
'Retrieve the item at the specified location within the ListBox.
Dim index As Integer = lb.IndexFromPoint(pt)



' set the tooltip to the current item's string
If index < ListBox1.Items.Count Then
ToolTip1.SetToolTip(ListBox1, ListBox1.Items(index))
Else
ToolTip1.SetToolTip(ListBox1, "")
End If
End Sub

chory
email Siga el debate Respuesta Responder a este mensaje
Ads by Google
Help Hacer una preguntaRespuesta Tengo una respuesta
Search Busqueda sugerida