| 
 PureBytes Links 
Trading Reference Links 
 | 
At 7:05 PM -0400 5/21/99, Philippe wrote:
>In a MessageLog, we can limit the maximum entries by clicking on
>View\Options\Limit, but it will affect all Message Logs.
>
>Is there a function like : ClearLog = -1;  to able to delete from a Code ?
The way I do it is to print a few hundred blank lines in a loop.Something
like the following:
-----
if CurrentBar = 1 then begin
   for Value1 = 1 to 200 begin
      Print(" ");
   end;
end;
-----
Bob Fulks
 |