home *** CD-ROM | disk | FTP | other *** search
- "Sub Main()
- Show ""YEAR 2000 CALCULATIONS""
- Show Days2000 & "" days left for the year 2000""
- Show FormatNumber(Seconds2000, 0, False, False, True) & "" seconds left until the year 2000""
- Show FormatNumber(Minutes2000, 0, False, False, True) & "" minutes left until the year 2000""
- End Sub
-
- Function Days2000()
- Days2000 = #1/1/2000# - Date()
- End Function
-
- Function Seconds2000()
- Seconds2000 = (#1/1/2000 0:0:00 AM# - Date()) * (24*60*60)
- End Function
-
- Function Minutes2000()
- Minutes2000 = (#1/1/2000 0:0:00 AM# - Date()) * (24*60)
- End Function"
-