Date Name Downloads
Jun 15, 2018 TriggerHappy 2.1.2 564
Jun 14, 2018 TriggerHappy 2.1.1 111
Aug 23, 2017 TriggerHappy 2.0.1 288
Jan 20, 2014 TriggerHappy 2.0 final 628
Jan 19, 2014 TriggerHappy 2.0 ( UNIX port ) 230
Aug 16, 2011 TriggerHappy 32&64Bit 0
Feb 25, 2005 0.8 2531
Feb 17, 2005 0.7 306
TriggerHappy 2.1.2
TriggerHappy 2.1.2
Jun 15, 2018
Apache License
564

added new feature to return the complete ACL change history aside from the last change

Sample usage

If ts.EventId = EVENT_ACL then

MsgBox "get last action with ts.GetString(3)"

Dim last_action As Variant

last_action = Split(ts.AclChange, "~#~")

MsgBox last_action(UBound(last_action) - 2)

MsgBox last_action(UBound(last_action) - 1)

MsgBox last_action(UBound(last_action))

MsgBox "====================="

MsgBox "get ACL history with ts.GetString(4)"

Dim acl_history As Variant

acl_history = Split(ts.AclHistory, "~#~")

ForAll e In acl_history

MsgBox CStr(e)

End ForAll

End If