Tema: button
Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23/05/2007, 03:46
Darla
 
Fecha de Ingreso: mayo-2007
Mensajes: 8
Antigüedad: 17 años, 10 meses
Puntos: 0
Re: button

Buenas
Me parece que lo puedes hacer con lo siguiente:
' Create the ToolTip and associate with the Form container.
Dim toolTip As New ToolTip
' Set up the delays for the ToolTip.
toolTip.AutoPopDelay = 5000
toolTip.InitialDelay = 10 ' 1000
toolTip.ReshowDelay = 500
' Force the ToolTip text to be displayed whether or not the form is Active.
toolTip.ShowAlways = True
toolTip.SetToolTip(Me.lblAdd, "Añadir")
toolTip.SetToolTip(Me.lblBorrar, "Borrar")
toolTip.SetToolTip(Me.lblModificar, "Modificar")

Ponlo en el load o crea una funcion y llamala. Espero que te sirba, y no haber puesto algo mal....