Click here to Skip to main content
15,880,543 members
Articles / Programming Languages / VBScript
Tip/Trick

Days Left Timer VBS

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
29 Jun 2010CPOL 14.7K   93   3   2
Days Left Timer VBS self deleting

What It Does

It's a Visual Basic Script that lets System Administrators notify users of an upcoming event or change and how many days are left until the change. After it has hit zero days left, it deletes itself. This can be changed so it gives a second message before it deletes itself or launches other programs if required.

How to Use It

Place in start-up folder on Windows machines after modifying the message box and the eTime variable to what you want.

Code

VBScript
sTime = Date()
'Change date to what ever you want in MM/DD/YYYY format
eTime = "10/10/2010" 

call datediffToWords(sTime, eTime)
VBScript
Function datediffToWords(d1, d2) 
	report = ""
 	days = DateDiff("d",d1,d2)
	report = days & " Day(s)"
	datediffToWords = report
	Msgbox "Message "& datediffToWords,4160,"Title"
	If datediffToWords = "0" & " Day(s)" Then
		DeleteSelf
	End If
End Function 
VBScript
Sub DeleteSelf()       
        Dim objFSO
        Set objFSO = CreateObject("Scripting.FileSystemObject")
        objFSO.DeleteFile WScript.ScriptFullName
        Set objFSO = Nothing
End Sub 

Notes

To use in a web page, remove the messagebox and replace it with document.write and remove the DeleteSelf sub.

History

  • 29th June, 2010: Initial post

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralMy vote of 1 Pin
Emilio Garavaglia27-Jun-10 6:40
Emilio Garavaglia27-Jun-10 6:40 
GeneralNot an article Pin
Not Active27-Jun-10 3:11
mentorNot Active27-Jun-10 3:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.