VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



This Program Count Seconds In a Digital Numbers from 0 to INFINITE. I have it from 0 to 1000 but yo

by Ramon A. Vicioso (1 Submission)
Category: Miscellaneous
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Thu 7th December 2000
Date Added: Mon 8th February 2021
Rating: (1 Votes)

This Program Count Seconds In a Digital Numbers from 0 to INFINITE. I have it from 0 to 1000 but you can modify the program by adjusting the

API Declarations


cmdPause
cmdStartOver
cmdStartandContinue
label1
timer 1 & 2

Rate This Program Count Seconds In a Digital Numbers from 0 to INFINITE. I have it from 0 to 1000 but yo




Private Sub cmdStart_Click()
 
        Timer1.Enabled = False
        Timer2.Enabled = True
  
End Sub

Private Sub cmdPause_Click()
   Timer2.Enabled = False
End Sub

Private Sub cmdStartOver_Click()
    Label1.Caption = 0
    Timer2.Enabled = False
End Sub

Private Sub cmdStartandContinue_Click()
    Label1.Caption = 0
    Timer1.Enabled = False
End Sub


Private Sub Form_Load()

End Sub

Private Sub Timer1_Timer()
     Label1.Caption = 0
End Sub
Private Sub Timer2_Timer()
   Label1.Caption = Val(Label1.Caption) + 1 & "  Seconds."
End Sub


Download this snippet    Add to My Saved Code

This Program Count Seconds In a Digital Numbers from 0 to INFINITE. I have it from 0 to 1000 but yo Comments

No comments have been posted about This Program Count Seconds In a Digital Numbers from 0 to INFINITE. I have it from 0 to 1000 but yo. Why not be the first to post a comment about This Program Count Seconds In a Digital Numbers from 0 to INFINITE. I have it from 0 to 1000 but yo.

Post your comment

Subject:
Message:
0/1000 characters