ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Inactive close (https://www.excelbanter.com/excel-programming/274141-inactive-close.html)

Dave Hardy

Inactive close
 
Is there any way to have excel close down after a set
time of being inactive?

John Wilson

Inactive close
 
Dave,

Plagiarized from a previous post by Tom Ogilvy...............
For reference, a Google search of "Inactivity Timeout" brought
it right up.

John

<snip

In the ThisWorkbook code module:

Public BootTime As Date
' Tom Ogilvy 8/18/99
Private Sub Workbook_Open()
BootTime = Now + TimeValue("00:30:00")
Application.OnTime BootTime, "CloseBook"
End Sub

Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal
Target
As Excel.Range)
Application.OnTime BootTime, "CloseBook", , False
BootTime = Now + TimeValue("00:30:00")
Application.OnTime BootTime, "CloseBook"
End Sub

In a General Module

Sub CloseBook()
ThisWorkbook.Save
ThisWorkbook.Close
End Sub

<snip

Dave Hardy wrote:

Is there any way to have excel close down after a set
time of being inactive?




All times are GMT +1. The time now is 03:33 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com