+ Reply to Thread
Results 1 to 3 of 3

msg box with finished time, please read

Hybrid View

  1. #1
    Greegan
    Guest

    msg box with finished time, please read

    What I want to do is show that the macros I've been working on actually
    saves time at work, but I want to know how much time.
    I would like to have the finished time appear in a msg box with an okay to
    close
    I'm not sure how to add a msg box let alone the start time, end time and the
    calculation to provide the final answer.
    Can anyone help me with this?
    I'm not sure what happened but I submitted this answer on the 28th and I
    can't believe it was deleted already...

    Thanks in advance
    G



  2. #2
    Rowan
    Guest

    RE: msg box with finished time, please read

    Try something like:

    Sub MsgTimer()
    Dim StartTime As Single
    Dim EndTime As Single
    StartTime = Timer
    'Your code here
    EndTime = Timer
    MsgBox "Time taken: " & EndTime - StartTime & " seconds"
    End Sub

    Regards
    Rowan

    "Greegan" wrote:

    > What I want to do is show that the macros I've been working on actually
    > saves time at work, but I want to know how much time.
    > I would like to have the finished time appear in a msg box with an okay to
    > close
    > I'm not sure how to add a msg box let alone the start time, end time and the
    > calculation to provide the final answer.
    > Can anyone help me with this?
    > I'm not sure what happened but I submitted this answer on the 28th and I
    > can't believe it was deleted already...
    >
    > Thanks in advance
    > G
    >
    >
    >


  3. #3
    Greegan
    Guest

    Re: msg box with finished time, please read - thanks

    Thank you that was awesome!


    "Rowan" <Rowan@discussions.microsoft.com> wrote in message
    news:7465B6E2-D0E0-4371-9459-13704847B043@microsoft.com...
    > Try something like:
    >
    > Sub MsgTimer()
    > Dim StartTime As Single
    > Dim EndTime As Single
    > StartTime = Timer
    > 'Your code here
    > EndTime = Timer
    > MsgBox "Time taken: " & EndTime - StartTime & " seconds"
    > End Sub
    >
    > Regards
    > Rowan
    >
    > "Greegan" wrote:
    >
    >> What I want to do is show that the macros I've been working on actually
    >> saves time at work, but I want to know how much time.
    >> I would like to have the finished time appear in a msg box with an okay
    >> to
    >> close
    >> I'm not sure how to add a msg box let alone the start time, end time and
    >> the
    >> calculation to provide the final answer.
    >> Can anyone help me with this?
    >> I'm not sure what happened but I submitted this answer on the 28th and I
    >> can't believe it was deleted already...
    >>
    >> Thanks in advance
    >> G
    >>
    >>
    >>




+ 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