Date Name Downloads
Jun 15, 2018 TriggerHappy 2.1.2 521
Jun 14, 2018 TriggerHappy 2.1.1 108
Aug 23, 2017 TriggerHappy 2.0.1 284
Jan 20, 2014 TriggerHappy 2.0 final 625
Jan 19, 2014 TriggerHappy 2.0 ( UNIX port ) 214
Aug 16, 2011 TriggerHappy 32&64Bit 0
Feb 25, 2005 0.8 2528
Feb 17, 2005 0.7 305
TriggerHappy 2.1.2
TriggerHappy 2.1.2
Jun 15, 2018
Apache License
521

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