+ Reply to Thread
Results 1 to 7 of 7

command button time limit

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    04-12-2013
    Location
    Crayford, kent
    MS-Off Ver
    Excel 2013
    Posts
    394

    command button time limit

    Hi
    Can you put a code in a command button that only allows it to run for a certain amount of time? say 5 seconds?

    Ive looked everywhere and triend going through the object browser and cant find anything

    or

    Can the command buttons code run until another command button or action is done?

    Any help would be great

    Thanks

    Dan

  2. #2
    Forum Expert
    Join Date
    04-22-2013
    Location
    .
    MS-Off Ver
    .
    Posts
    4,418

    Re: command button time limit

    What is the code in the command button? you could do something along the lines of:
    dim time_limit
    time_limit = now() + 00:00:05
    do until now()>time_limit
      'code
    loop

  3. #3
    Forum Contributor
    Join Date
    04-12-2013
    Location
    Crayford, kent
    MS-Off Ver
    Excel 2013
    Posts
    394

    Re: command button time limit

    Hi thanks for replying at the moment its

    Private Sub CommandButton12_Click()
    Call PlaySound
    t = Now() + TimeValue("00:00:05")
    myTime = Format(t, "hh:mm:ss ampm")
    End Sub
    Playsound being the module

  4. #4
    Forum Expert
    Join Date
    04-22-2013
    Location
    .
    MS-Off Ver
    .
    Posts
    4,418

    Re: command button time limit

    Ok, so:
    Private Sub CommandButton12_Click()
    Call PlaySound, time_limit
    time_limit = Now() + TimeValue("00:00:05")
    do until now() > time_limit
    t = Now() + TimeValue("00:00:05")
    myTime = Format(t, "hh:mm:ss ampm")
    loop
    End Sub
    would continually run that code for 5 seconds.

  5. #5
    Forum Contributor
    Join Date
    04-12-2013
    Location
    Crayford, kent
    MS-Off Ver
    Excel 2013
    Posts
    394

    Re: command button time limit

    Ok Great

    I tried that and theres a syntax error on
    Call PlaySound, time_limit
    Is it possible to stop the code running after 5 seconds until command button is clicked again? or do i need to put a code into the after_update or another section?, i tried removing the loop, but it doesnt like that...

  6. #6
    Forum Expert
    Join Date
    04-22-2013
    Location
    .
    MS-Off Ver
    .
    Posts
    4,418

    Re: command button time limit

    Sorry, I thought that line was the dim part, try this instead:
    Private Sub CommandButton12_Click()
    time_limit = Now() + TimeValue("00:00:05")
    do until now() > time_limit
    Call PlaySound
    t = Now() + TimeValue("00:00:05")
    myTime = Format(t, "hh:mm:ss ampm")
    loop
    End Sub
    If you want the start/stop thing you would need to use ontime to loop through the code and you would also need some way of keeping track of whether the button should start or stop the sound - maybe change the text on the button from "start sound" to "stop sound"

  7. #7
    Forum Contributor
    Join Date
    04-12-2013
    Location
    Crayford, kent
    MS-Off Ver
    Excel 2013
    Posts
    394

    Re: command button time limit

    Ok thats great thank you for your help i will have a look at adjusting the module and code see if i can get it to stop for me

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] One Command button for 2 macros( Not in the same time)
    By abjac in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 12-13-2012, 10:43 AM
  2. [SOLVED] Command button will not execute all the time
    By fluce in forum Excel General
    Replies: 3
    Last Post: 10-02-2012, 04:51 PM
  3. Another command button... for zoom this time
    By torontoguy in forum Excel Programming / VBA / Macros
    Replies: 7
    Last Post: 01-22-2009, 10:40 AM
  4. How can i use a command button to validate date and time
    By kcdonaldson in forum Excel General
    Replies: 0
    Last Post: 12-09-2005, 12:10 PM
  5. How to limit the number of times a command button can be pressed
    By justchris in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-15-2005, 06:23 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