Results 1 to 5 of 5

Stopwatch issue

Threaded View

  1. #1
    Registered User
    Join Date
    12-07-2021
    Location
    Bristol
    MS-Off Ver
    2013
    Posts
    45

    Stopwatch issue

    Hi everyone,
    I tried to create a stopwatch form but it gives me wrong values and can't figure out where the issue is.
    Can you help please? I hope that the two screenshots shows exactly what the problem is.
    Thanks in advance.

    This is the code:

    Dim startTime As Single
    Dim TimerOn As Boolean
    Dim TimeToCall As Date
    Private Sub CommandButton1_Click()
    DT_counter.Hide
    End Sub
    Private Sub ExitButton_Click()
    Unload Me
    End Sub
    Private Sub resetbutton_Click()
    Down_time.Value = 0
    StartT.Value = 0
    StopT.Value = 0
    End Sub
    Private Sub StartButton_Click()
        Down_time.Value = 0
        TimerOn = True
        startTime = Timer
        StartT.Value = Format(Now, "hh:mm:ss")
    End Sub
    Private Sub StopButton_Click()
        Dim finalTime As Single
        finalTime = Timer - startTime
        StopT.Value = Format(Now, "hh:mm:ss")
        Down_time.Value = Format(finalTime, "00:00:00")
    End Sub
    Private Sub UserForm_Initialize()
    Call CenterForm
    End Sub
    Private Sub CenterForm()
    If Application.Left > 1000 Then
        With Me
            .Top = (Application.UsableHeight / 2) + (Me.Height / 2)
            .Left = (1.5 * (Application.UsableWidth)) - (Me.Width / 2)
            .StartUpPosition = 2
        End With
    Else
        With Me
            .Top = (Application.UsableHeight / 2) + (Me.Height / 2)
            .Left = (Application.UsableWidth / 2) - (Me.Width / 2)
            .StartUpPosition = 2
        End With
    End If
    End Sub
    Attached Images Attached Images

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Stopwatch Macro
    By viveknath in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-30-2018, 03:38 AM
  2. stopwatch error
    By Micbrook in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 01-04-2016, 07:24 PM
  3. [SOLVED] Can someone help me create a stopwatch?
    By dweinin357 in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 06-02-2015, 02:22 AM
  4. Stopwatch macro on YouTube issue
    By Micbrook in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-17-2015, 02:10 PM
  5. Excel Stopwatch Help [VBA]
    By lilhugo in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 04-05-2013, 10:27 AM
  6. Stopwatch
    By bittu2010 in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 02-20-2012, 05:01 PM
  7. Stopwatch
    By Metolius Dad in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 11-09-2009, 07:18 PM

Tags for this Thread

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