Timer not change if timer system changed?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kuning
    New Member
    • Dec 2010
    • 2

    Timer not change if timer system changed?

    to the point...

    sample...

    Code:
    private sub Timer1_Timer()
      me.caption = now
    end sub
    but this code if time system on windows has change time in my program changed too.

    how i can to create program with timer control but if timer system has changed timer in my program not change?

    please help me...
  • Guido Geurs
    Recognized Expert Contributor
    • Oct 2009
    • 767

    #2
    Why putting Me.caption in timer if it may not change???
    If You want start-time of program in title:
    Code:
    Private Sub Form_Load()
    Me.Caption = Now
    End Sub

    Comment

    Working...