Hi,
I'm creating a DLL that's going to be called from IIS. The DLL going to check to an Access database if there is new entry. If so its going to update another page.
I want a Timer that's call the Update function every ex: 5 min. (5000)
I try something like this:

(General Statement)
Dim timer1 as Timer

Private Sub Class_Initialize()
timerInterval.Interval = 5000
timerInterval.Enabled = True
End Sub

Sub Timer1_Timer()
Call Update
End Sub

Sub Update()
..... Code ....
End sub

Nothing seem to happen, where img doing wrong?

Thx