Search results

  1. Mark Shannon

    Visual Basic Programming (VB5): Countdown???

    THAT'S IT!!! I knew I should have used the Mod function.... I took a course in it in school last semester, but my other studies seemed to have pushed all of that stuff out of my head.. I learned Mod too!..just forgot how to use it...
  2. Mark Shannon

    Visual Basic Programming (VB5): Countdown???

    Ok, this is what I've come up with...paste it into VB if you want and try it out... Private Sub tmrCountdown_Timer() Dim lngL As Long Dim targetdate As Date Dim sglDays As Single Dim sglHours As Single Dim sglMinutes As Single targetdate = #6/9/2003# 'countdown to my birthday lngL =...
  3. Mark Shannon

    Visual Basic Programming (VB5): Countdown???

    Well I was planning on having it countdown similar to: (ex) 5 Days, 15 Hours, 56 Minutes, 13 Seconds Until ________ is it possible to do that... I would use a label and a simple timer at a one second interval, right? thanx anywayz, maybe those terms will help get me started...
  4. Mark Shannon

    Visual Basic Programming (VB5): Countdown???

    Ok, I've taken a class in visual basic programming... I know the basics, ie: how to make a system clock, buttons, timers, etc... what I've been toying with is making a countdown clock... I want to make a program that can count down to a predetermined date (like someone's birthday, a movie...
Top