SMazTX > 2025-04-27 06:03
Jean Lalonde > 2025-04-27 12:24
SMazTX > 2025-04-29 04:03
Jean Lalonde > 2025-04-29 08:08
#SingleInstance,Force
#Requires AutoHotkey v1.1
global strExclude := "KeePass.exe|KeePass" ; from the options window
MsgBox, % ApplicationIsExcluded("C:\Users\sjmpr\Documents\NewDatabase4PW.kdbx - KeePass", "WindowsForms10.Window.8.app.0.30495d1_r6_ad1", "KeePass.exe")
ExitApp
;------------------------------------------------------------
ApplicationIsExcluded(strWindowClass, strWindowTitle, strProcessName)
;------------------------------------------------------------
{
Loop, parse, % strExclude, |
if StrLen(A_LoopField)
and (InStr(strWindowClass, A_LoopField)
or InStr(strWindowTitle, A_LoopField)
or InStr(strProcessName, A_LoopField))
return true
return false
}
;------------------------------------------------------------
robsc > 2025-04-29 13:08
Jean Lalonde > 2025-05-07 16:41
SMazTX > 2025-05-08 06:23
Jean Lalonde > 2025-05-08 07:40
Jean Lalonde > 2025-05-08 07:59
SMazTX > 2025-05-08 10:58
Jean Lalonde > 2025-05-08 11:01