Results 1 to 4 of 4

Excel VBA - Multiple procedures in 1 sheet to set up multiple timers

Threaded View

  1. #2
    Forum Expert Logit's Avatar
    Join Date
    12-23-2012
    Location
    North Carolina
    MS-Off Ver
    Excel 2019 Professional Plus - 2007 Enterprise
    Posts
    7,396

    Re: Excel VBA - Multiple procedures in 1 sheet to set up multiple timers

    .
    Here is an example project that you can draw from. This is only a portion of the code :

    Private Sub CommandButton1_Click()
        Range("F3") = "00:00:00"
    End Sub
    Private Sub CommandButton2_Click()
        Range("H3") = "00:00:00"
    End Sub
    Private Sub CommandButton3_Click()
        Range("J3") = "00:00:00"
    End Sub
    Private Sub Timer1_start_Click()
        If Timer1_start.Caption = "Start" Then
            StartTimer1
        Else
            StopTimer1
        End If
    End Sub
    Private Sub Timer2_start_Click()
        If Timer2_start.Caption = "Start" Then
            StartTimer2
        Else
            StopTimer2
        End If
    End Sub
    Private Sub Timer3_start_Click()
        If Timer3_start.Caption = "Start" Then
            StartTimer3
        Else
            StopTimer3
        End If
    End Sub
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. multiple timers
    By kadlaw in forum Excel General
    Replies: 2
    Last Post: 11-14-2017, 04:56 AM
  2. Multiple timers
    By OillyBob55 in forum Excel Programming / VBA / Macros
    Replies: 19
    Last Post: 08-17-2017, 04:38 PM
  3. [SOLVED] Multiple countdown timers and pop-up messages/alarms on a single sheet
    By charliethechamp in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 10-21-2015, 06:21 AM
  4. Multiple Timers within EXcel
    By Janto724 in forum Hello..Introduce yourself
    Replies: 1
    Last Post: 04-26-2013, 09:07 AM
  5. multiple countdown timers in excel?
    By hollandrob81 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-06-2013, 04:12 PM
  6. Setup Multiple Timers
    By jomili in forum Excel Programming / VBA / Macros
    Replies: 3
    Last Post: 02-02-2010, 04:38 PM
  7. Running multiple timers
    By tropy in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 09-17-2006, 09:44 AM

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