Ver Mensaje Individual
  #4 (permalink)  
Antiguo 28/12/2009, 20:52
Avatar de jsr_17_7
jsr_17_7
 
Fecha de Ingreso: febrero-2009
Ubicación: Lima
Mensajes: 105
Antigüedad: 16 años
Puntos: 0
Respuesta: Uso de evento MouseHover

bueno encontre informacion sobre el tooltiptext y me funciono...
esto es lo que encontre... :

Imports System.Windows.Forms

dentro del load:

' Create the ToolTip and associate with the Form container.
Dim toolTip1 As New ToolTip

' Set up the delays for the ToolTip.
toolTip1.AutoPopDelay = 500
toolTip1.InitialDelay = 100
toolTip1.ReshowDelay = 50
' Force the ToolTip text to be displayed whether or not the form is active.
toolTip1.ShowAlways = True

' Set up the ToolTip text for the Button and Checkbox.
toolTip1.SetToolTip(Me.CheckBox1, "Negativo")



y bueno todo bien igualmente gracias x todo...!!!