Forum Discussion
wfetherolf
14 years agoOccasional Contributor
I ended up doing it in JScript, and I wanted to know if the application execution failed for some odd reason. Here's what I did:
function GeneralEvents_OnLogMessage(Sender, LogParams)
{
if (aqString.Find(LogParams.Str,"started")>=0)
{
LogParams.Locked=true;
}
}