Results 1 to 4 of 4

Thread: [RESOLVED] Help using VB6 Timer, Countdown Scenario

Hybrid View

  1. #1
    New Member
    Join Date
    Dec 2007
    Posts
    9

    Re: Help using VB6 Timer, Countdown Scenario

    Code:
    seconds = totTime - intCnt
    minutes = seconds \ 60
    seconds = seconds Mod 60
    hours = minutes \ 60
    minutes = minutes Mod 60
    frmTimer.Caption = hours & ":" & minutes & ":" & seconds & " Until Shutdown"
    Hope this helps.

  2. #2

    Thread Starter
    Junior Member
    Join Date
    Dec 2006
    Posts
    17

    Re: Help using VB6 Timer, Countdown Scenario

    Omg thankyou so much it works
    I knew it was something small and simple like that, I've never heard of Mod before, what uses does it have?

    Do i rate you brilliant now?

    Sorry but im new lol

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width