/ Forums / Advansys Formativ / Creating Solutions with Formativ / answer to all / Reply To: answer to all
May 18, 2006 at 6:18 pm
#7587
I will send you the event diagnostic applet.
In addition, I would suggest that you use the Trace() method to help in debugging applets. Trace() writes a string out to any attached debugger, allowing you to watch the flow of a script.
For example, if you include the following line in an applet:
call Utilities.Trace("This is a trace line")
the text:
This is a trace line
will be output to any attached debugger. We recommend DebugView from SysInternals.
You can use this method also to output property values, as in:
call Utilities.Trace("EventParams.Item(0).Value = " & EventParams.Item(0).Value)
which might output the following:
EventParams.Item(0).Value = 7
I hope this helps.
Advansys Support
[This message was edited by Support 1 on May 18, 2006 at 06:26 PM.]