Subject | Re: [IBO] IB_Monitor.txt |
---|---|
Author | Andy Murphy |
Post date | 2001-11-29T17:21Z |
> How do you get IB_monitor to put it's information into a text file?? likeI just dropped it on my form, enabled it.
> andy just did in a previous email.
>
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.