+ Reply to Thread
Results 1 to 4 of 4

HELP for COUNTDOWN TIMER

  1. #1
    CC
    Guest

    HELP for COUNTDOWN TIMER


    I need to build a countdown timer and show it in a Excel spreadsheet


    thanks


  2. #2
    Ardus Petus
    Guest

    Re: HELP for COUNTDOWN TIMER

    Paste the following code into a Module, and run it:

    Public Sub CountDown()
    Const oneSecond As Double = 1 / 24 / 3600
    With Worksheets("Sheet1").Range("A1")
    .Value = .Value - oneSecond
    End With
    Application.OnTime Now + oneSecond, "CountDown"
    End Sub


    "CC" <[email protected]> a écrit dans le message de news:
    [email protected]...
    >
    > I need to build a countdown timer and show it in a Excel spreadsheet
    >
    >
    > thanks
    >




  3. #3
    CC
    Guest

    Re: HELP for COUNTDOWN TIMER

    What about put this information (countdowntimer) in a msgbox or form ?

    CC


    "Ardus Petus" wrote:

    > Paste the following code into a Module, and run it:
    >
    > Public Sub CountDown()
    > Const oneSecond As Double = 1 / 24 / 3600
    > With Worksheets("Sheet1").Range("A1")
    > .Value = .Value - oneSecond
    > End With
    > Application.OnTime Now + oneSecond, "CountDown"
    > End Sub
    >
    >
    > "CC" <[email protected]> a écrit dans le message de news:
    > [email protected]...
    > >
    > > I need to build a countdown timer and show it in a Excel spreadsheet
    > >
    > >
    > > thanks
    > >

    >
    >
    >


  4. #4
    Ardus Petus
    Guest

    Re: HELP for COUNTDOWN TIMER

    I'm no good at userforms!

    Sorry I can't help any further
    --
    AP

    "CC" <[email protected]> a écrit dans le message de news:
    [email protected]...
    > What about put this information (countdowntimer) in a msgbox or form ?
    >
    > CC
    >
    >
    > "Ardus Petus" wrote:
    >
    >> Paste the following code into a Module, and run it:
    >>
    >> Public Sub CountDown()
    >> Const oneSecond As Double = 1 / 24 / 3600
    >> With Worksheets("Sheet1").Range("A1")
    >> .Value = .Value - oneSecond
    >> End With
    >> Application.OnTime Now + oneSecond, "CountDown"
    >> End Sub
    >>
    >>
    >> "CC" <[email protected]> a écrit dans le message de news:
    >> [email protected]...
    >> >
    >> > I need to build a countdown timer and show it in a Excel spreadsheet
    >> >
    >> >
    >> > thanks
    >> >

    >>
    >>
    >>




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1