+ Reply to Thread
Results 1 to 12 of 12

Excel Session timer 10min splash screen Warning then 15min force close

  1. #1
    Registered User
    Join Date
    01-19-2009
    Location
    Montreal, Quebec
    MS-Off Ver
    Excel 2003
    Posts
    13

    Excel Session timer 10min splash screen Warning then 15min force close

    Hi, The purpose of this macro was to control the time this excel file was open because many users modify it. I decided to create a splash screen (userform) to display a message to the user saying "your session time of 15min is up"

    The problem is, the first time I open the file everything works fine. But after I close it (just the workbook not excel), It opens itself for some reason and gives me a debug error message. Perhaps the timer is never stopped?


    I call "StartTimer10min" on workbook open and "StopTimer" before workbook close. Thanks for the help

    Here is the code in my module:

    Please Login or Register  to view this content.
    Last edited by Phil_pac; 02-20-2009 at 01:45 PM. Reason: Title change

  2. #2
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Splash screen after 10min of excel open error

    Post the ThisWorkbook code so we can see the whole thing?
    Last edited by shg; 02-16-2009 at 02:50 PM.
    Entia non sunt multiplicanda sine necessitate

  3. #3
    Registered User
    Join Date
    01-19-2009
    Location
    Montreal, Quebec
    MS-Off Ver
    Excel 2003
    Posts
    13

    Re: Splash screen after 10min of excel open error

    Workbook Code:

    Please Login or Register  to view this content.
    UserForm2 code:

    Please Login or Register  to view this content.

  4. #4
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Splash screen after 10min of excel open error

    You also have to unschedule KillForm in the close event.

  5. #5
    Registered User
    Join Date
    01-19-2009
    Location
    Montreal, Quebec
    MS-Off Ver
    Excel 2003
    Posts
    13

    Re: Splash screen after 10min of excel open error

    I don't know, maybe it's me but My unscheduling was giving me an error so I had to "On Error Resume Next like I did with the other unschedule. (bad programming I know) but it still does not stop it from re-opening.

    This is part of my workbook code

    Please Login or Register  to view this content.

  6. #6
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Splash screen after 10min of excel open error

    When you unschedule, you have to pass the time it was scheduled, just like for the other routine.

  7. #7
    Registered User
    Join Date
    01-19-2009
    Location
    Montreal, Quebec
    MS-Off Ver
    Excel 2003
    Posts
    13

    Re: Splash screen after 10min of excel open error

    It works! So i added an extra part that closes the workbook after 15min, so the splash screen will serve as a warning that 10min are up and 5min remaining before a save close event is forced.

    This will prevent the users from "hogging" the file.

    here's the final working code

    In workbook:

    Please Login or Register  to view this content.
    In my module:

    Please Login or Register  to view this content.
    userform code:

    Please Login or Register  to view this content.
    Thanks again
    Last edited by Phil_pac; 02-17-2009 at 09:42 AM.

  8. #8
    Registered User
    Join Date
    01-19-2009
    Location
    Montreal, Quebec
    MS-Off Ver
    Excel 2003
    Posts
    13

    Re: Excel Session timer 10min splash screen Warning then 15min force close

    Nevermind guysl... For some reason, Everytime I close the file it somehow automatically re-opens later.... This is quite frustrating. Any more Ideas? Maybe my approach is wrong?

  9. #9
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Excel Session timer 10min splash screen Warning then 15min force close

    Where do you unschedule KillForm?

  10. #10
    Registered User
    Join Date
    01-19-2009
    Location
    Montreal, Quebec
    MS-Off Ver
    Excel 2003
    Posts
    13

    Re: Excel Session timer 10min splash screen Warning then 15min force close

    In the main module, Sub StopTimer()

  11. #11
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689

    Re: Excel Session timer 10min splash screen Warning then 15min force close

    In the Initialize event, you schedule Killform. In the Close event, you're not passing the time it was scheduled. Now + 7 minutes now is not the same as Now + 7 minutes later.

  12. #12
    Registered User
    Join Date
    01-19-2009
    Location
    Montreal, Quebec
    MS-Off Ver
    Excel 2003
    Posts
    13

    Re: Excel Session timer 10min splash screen Warning then 15min force close

    Ok, so I got it to work without the userform (Since it was giving me problems). instead of a splash screen, I created a msgbox Yes/No event with the same warning. So it goes like this:

    After 10min of opening the file, the user is prompted with the message box saying they've "passed 10min save & close? You have 5 extra minutes" if Yes, then save and close workbook. If no, then a 5min timer starts and at the end of 5min it saves and closes automatically.

    I call only the 10min start timer on workbook open, after message box I stop all timers and then begin the second timer. on workbook close I stop all timers.

    Workbook code:
    Please Login or Register  to view this content.
    Here is the module code:

    Please Login or Register  to view this content.

+ 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