VISUALIZAR HORA DO SISTEMA

USUARIO.EXCLUIDOS 13/12/2006 15:08:51
#189735
Quero que um objeto timer pegue a hora do sistema e exiba em um label qualquer
estou migrando agorA pro vb.net
atenciosamente levi.madia
USUARIO.EXCLUIDOS 13/12/2006 15:34:56
#189744
dà UM ERRO DO TIPO My not is declared
RAMSES 13/12/2006 15:35:07
#189745
Resposta escolhida
1. coloque um timer no form
2. coloque a propriedade enable = true
3. coloque no evento Tick o seguinte me.label.text = now.tostring("HH:mm:ss")
CLEVERTON 13/12/2006 15:36:25
#189747

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Timer1.Enabled = True
End Sub

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
Label1.Text = Format(DateTime.Now, "hh:mm:ss")

End Sub

Tópico encerrado , respostas não são mais permitidas