Link to home
Start Free TrialLog in
Avatar of mrcool4444
mrcool4444

asked on

Timer

What is the interval to make a timer fire every second?
ASKER CERTIFIED SOLUTION
Avatar of vbasic5
vbasic5

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Vbmaster
Vbmaster

You never heard of that thing.. what's it called.. the HELPFILE? ;)
Avatar of mrcool4444

ASKER

I am putting this in a timer....what am I doing wrong?

Res = Count + 1
If Res >= 2 Then End
You need to state some more info, like how and where do you declare the variable 'Res' and 'Count'? And maybe even more important what do you intend the code to do?
Avatar of Éric Moreau
Maybe this can help. Place a timer control on a form (without changing any properties) and paste this code:

Private Sub Form_Load()
    Timer1.Enabled = True
    Timer1.Interval = 1000
End Sub

Private Sub Timer1_Timer()
Static res As Integer

    res = res + 1
    If res >= 2 Then End
End Sub

The only thing left is what is "Count"?
Got it to work! Thanks...the reason I put count is because for some reason I thought that is the only way you can add 1...