|
-
Feb 19th, 2001, 02:04 PM
#1
Thread Starter
New Member
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|