Subject Re: [IBO] IB_Monitor.txt
Author Andy Murphy
> How do you get IB_monitor to put it's information into a text file?? like
> andy just did in a previous email.
>

I just dropped it on my form, enabled it.
I then dropped a memo on my form called memo1.

In the IB_Monitor OnMonitorOutputItem Event I put:

with memo1.Lines do begin
add(newstring);
end;

I then had a button which saved the contents of the memo1 to a text file.

Easy.