Subject Re: [IBO] IB_Monitor / IB_MonitorDialog
Author Christian Gütter
Hello Roberto,

> "Most calls to the API can be optionally traced with all of the
> 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?

when an IB_Monitor is attached to an IB_Connection, the event handler
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