From a90f2077b62c3e5c2e3cab26af47f66e2c49277e Mon Sep 17 00:00:00 2001 From: David Daily Date: Thu, 23 Jan 2020 08:47:09 -0600 Subject: [PATCH] Update 'D3K.ahk' --- D3K.ahk | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/D3K.ahk b/D3K.ahk index 0c5822e..054e235 100644 --- a/D3K.ahk +++ b/D3K.ahk @@ -63,7 +63,7 @@ If (glovar = 1) { glovarini = %A_MyDocuments%\GloVar.ini ; Location of the ini that the user modifies - glovarstart := "#SingleInstance force`n`n:*:$dus::`n:*:$dnm::`n:*:$dem::`n:*:$xid::`n" + glovarstart := "#SingleInstance force`n`n:*:$dus::`n:*:$dorg::`n:*:$dnm::`n:*:$dem::`n:*:$xid::`n" SetTimer, GloVar, 2000 ; Check every 2 seconds @@ -104,7 +104,6 @@ If (glovar = 1) { Run glovar.ahk } - Break } If InStr(RESection, "up") { @@ -185,14 +184,16 @@ If (glovar = 1) } } } - If InStr(REKey, "xid") ; If an xID is entered. Unique identifier for people + If InStr(REKey, "xID") ; If an xID is entered. Unique identifier for people { StringUpper, REValue, REValue ; Makes xID uppercase dealinfo := GetInfo(REValue) ; Gets information, see function for details - if !(REValue = dealinfo.xid) + if !(InStr(dealinfo.xid, REValue)) { + MsgBox, run run addemail.ahk + FileGetTime, gvMod, %glovarini% Continue }