good evening!
try something like this...
add a timer in your program..set interval to any interval u want...
add code something like this....
i hope i can give u some idea...
game-master
Main Topics
Browse All TopicsHi
I have a code that I need to be executed only once per day. What would I have to add to my code to ensure this is the case?
Thanks
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
I have modified a script that I created for someone else that should do what you need. You will need to rename the script to LoginDate.vbs
What the script does is when it runs it checks registry for a specific key and value.
If the Key doesn't exist, the Script calls a function, and then writes todays date to the Registry.
If the Key does exist, but the Value is not todays date, the Script calls a function, and then writes todays date to the registry.
If the Key does exist, but the Value is todays date, the Script Quits.
All you should need to do to get it working is add your script to the ScriptToRun Function - I have included comments in the script, and a couple of WScript.Echo lines so that you can see what it's doing whilst it's running.
Hope it helps.
Business Accounts
Answer for Membership
by: angelIIIPosted on 2009-11-06 at 00:45:32ID: 25757575
you have to store the last run date somewhere (registry, file, database, whatever), so even if the application is stopped and restarted, it will "know" it started already "today" ...
note: you might consider creating you app to simply run once, and exit. to run it once per day could be "delegated" to a scheduler application ...