Ver Mensaje Individual
  #2 (permalink)  
Antiguo 23-06-2008, 23:23:02
Avatar de SysEdw
SysEdw SysEdw is offline
Buena Participación en el Foro
 
Registrado: may 2007
Posts: 88
SysEdw Valoración +2
Contactar con SysEdw a través de MSN
Predeterminado Re: Mostrar hora actualizada en Barra de estado

Prueba con este codigo:
Private Sub Form4_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.ToolStripStatusLabel3.Text = " caps Lock" 'Mayuscula
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Me.ToolStripStatusLabel1.Text = Today.ToLongDateString
Me.ToolStripStatusLabel2.Text = TimeOfDay
If Console.CapsLock Then
Me.ToolStripStatusLabel3.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Bold)
Else
Me.ToolStripStatusLabel3.Font = New System.Drawing.Font("Segoe UI", 9.0!, System.Drawing.FontStyle.Regular)
End If
End Sub
Espero que te sirva
Responder Con Cita