Antonio,
Is there a reason that a window defaults to a white foreground color?
This is from TWindow:New():
Default...
nClrFore := CLR_WHITE, nClrBack := GetSysColor( COLOR_WINDOW ),;
It seems this sould be:
nClrFore := GetSysColor( COLOR_WINDOWTEXT), nClrBack := GetSysColor( COLOR_WINDOW ),;
The way it is now, if you try to put a SAY on a window it is white text on a white background (and thus invisible). You have to either change the foreground of the window or each SAY on the window.
James