
Originally Posted by
Wizzup?
Why not use Status() for this?
Debug messages are ... debug messages. If you really need it file a bug report, but
I think this is typically the kind of functions that we didn't want to add in Simba because they are silly.
If anything, it will probably come with tabbed debugging.
The tabbed debugging I've been working on gives you complete control over the contents.
Here is how you would do this in mine.
Code:
procedure ClearLastDebug;
begin
with GetTab(tbDebug) do
Delete(Count - 1);
end;
GetTab gives you a TStringList that you can modify and it will show in that tab. =)