Date Name Downloads
Jun 15, 2018 TriggerHappy 2.1.2 589
Jun 14, 2018 TriggerHappy 2.1.1 123
Aug 23, 2017 TriggerHappy 2.0.1 300
Jan 20, 2014 TriggerHappy 2.0 final 641
Jan 19, 2014 TriggerHappy 2.0 ( UNIX port ) 250
Aug 16, 2011 TriggerHappy 32&64Bit 0
Feb 25, 2005 0.8 2544
Feb 17, 2005 0.7 318
TriggerHappy 2.1.2
TriggerHappy 2.1.2
Jun 15, 2018
Apache License
589

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