Subject | Re: [IBO] IB_Monitor / IB_MonitorDialog |
---|---|
Author | Christian Gütter |
Post date | 2005-09-10T14:11:39Z |
Hello Roberto,
OnMonitorOutputItem is called each time something is added to the
trace.
You could drop a TMemo on your form and add the following line to the
event handler:
Memo1.Lines.Add(NewString).
In this case, the output is displayed within the TMemo.
HTH,
Christian
> "Most calls to the API can be optionally traced with all of thewhen an IB_Monitor is attached to an IB_Connection, the event handler
> information associated with the call displayed."
> This is what is written on TIB_Monitor's help.
> I couldn't yet realize how to see this trace, I mean, after enabling
> the Monitor how and where effectively see what is going on?
OnMonitorOutputItem is called each time something is added to the
trace.
You could drop a TMemo on your form and add the following line to the
event handler:
Memo1.Lines.Add(NewString).
In this case, the output is displayed within the TMemo.
HTH,
Christian