Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

Drag0n

Members
  • Posts

    1059
  • Joined

  • Last visited

    Never

Posts posted by Drag0n

  1. Still doesn't work..

    here's entire code

    ```
    'Resets timer
    Private Sub Command4_Click()
    Label1.Caption = ""
    End Sub
    'IS the timer
    Private Sub Timer1_Timer()
    Label1.Caption = Format(Val(Label1.Caption) + 0.01, _
    "fixed")
    End Sub
    'Starts the timer
    Private Sub Command1_Click()
    Timer1.Enabled = True
    Call Timer1_Timer
    End Sub
    'Pauses the timer
    Private Sub Command2_Click()
    timer1_enabled = False
    Stop Timer1_Timer
    End Sub

    ```
×
×
  • Create New...