Go Back  Xtreme Visual Basic Talk > Legacy Visual Basic (VB 4/5/6) > General > Countdown to a date?


Reply
 
Thread Tools Display Modes
  #1  
Old 01-24-2006, 03:00 PM
Rawns182 Rawns182 is offline
Newcomer
 
Join Date: Apr 2004
Location: South West UK
Posts: 19
Default Countdown to a date?


Ages ago, I made a small count down program to count down to my holiday!

The holiday date was added to the code and a time was used to count down the days, hours, mins and seconds to the holiday date. The countdown time was displayed in a label but its been ages since i last touched VB and its left my mind. Any help?
__________________
Posting Guidelines
Reply With Quote
  #2  
Old 01-24-2006, 03:10 PM
stevo stevo is offline
Senior Contributor

* Expert *
 
Join Date: May 2004
Location: Manchester, England.
Posts: 1,254
Default

Try this, as you can see, its counting down to the end of the year.
Code:
Dim d As Double d = CDbl(DateSerial(Year(Now), 12, 31) - Now) 'put your holiday date here Label1.Caption = Int(d) & " Days and " & CDate(1 - Time)
Reply With Quote
  #3  
Old 01-24-2006, 03:10 PM
reboot's Avatar
reboot reboot is offline
Keeper of foo

Retired Moderator
* Guru *
 
Join Date: Nov 2001
Location: Graceland
Posts: 15,612
Default

What is the question?
__________________
~ Quod non mortiferum, fortiorem me facit ~

Avatar by lebb
Reply With Quote
  #4  
Old 01-24-2006, 03:14 PM
Rawns182 Rawns182 is offline
Newcomer
 
Join Date: Apr 2004
Location: South West UK
Posts: 19
Default

I get an INVALID OUTSIDE PROCEDURE with the (now) section
__________________
Posting Guidelines
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Advertisement:





Free Publications
The ASP.NET 2.0 Anthology
101 Essential Tips, Tricks & Hacks - Free 156 Page Preview. Learn the most practical features and best approaches for ASP.NET.
subscribe
Programmers Heaven C# School Book -Free 338 Page eBook
The Programmers Heaven C# School book covers the .NET framework and the C# language.
subscribe
Build Your Own ASP.NET 3.5 Web Site Using C# & VB, 3rd Edition - Free 219 Page Preview!
This comprehensive step-by-step guide will help get your database-driven ASP.NET web site up and running in no time..
subscribe
 
 
-->