Show system time into StatusStrip


/ Published in: VB.NET
Save to your folder(s)



Copy this code and paste it in your HTML
  1. Private Sub TimerRelogio_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TimerRelogio.Tick
  2. Me.lblTime.Text = Date.Now
  3. End Sub
  4.  
  5. Private Sub frmMDIParent_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  6. TimerRelogio.Start()
  7. End Sub

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.