Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.     '100豪秒更新一次100ns欄位
  2.     Private Sub Timer1_Event() Handles Timer1.Tick
  3.         tb_100ns.Text = Now.Ticks
  4.     End Sub
  5.     '1000豪秒更新一次其他欄位
  6.     Private Sub Timer2_Tick(sender As System.Object, e As System.EventArgs) Handles   Timer2.Tick
  7.         tb_now.Text = Now
  8.         tb_Date.Text = Now.Date
  9.         tb_Hour.Text = Now.Hour
  10.         tb_min.Text = Now.Minute
  11.         tb_sec.Text = Now.Second
  12.         tb_total_min.Text = Now.TimeOfDay.TotalMinutes
  13.     End Sub