|
-
Nov 11th, 2008, 02:11 AM
#1
Thread Starter
Lively Member
[2008] Timer In Dot Net
I create an application that checks an excel file on a specific path.
if file not found then it generate message that file not found.
Next i want that if excel file not found then system checks for excel file after
30 Mins. (if timer is require so plz tell me about timer usage).
thanks
-
Nov 11th, 2008, 03:52 AM
#2
Re: [2008] Timer In Dot Net
Just add a Timer to your form in the designer and set its Interval to the number of milliseconds in 30 minutes. Double-click it to create a Tick event handler and add code to check for your file. You can then just Start and Stop the Timer as needed. Note that once you Start it it will keep Ticking on the specified Interval until you Stop it.
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
|