Hello Antonio
the are some bug solved in 904 in class say.prg e windows.prg
viewtopic.php?f=18&t=15416&p=80339&hilit=SetWindowText#p80339
Regards Maurizio
//-------------------------------------------------
TSAY.PRG
Please make this change In Class TSay Method Initiate:
...
if ::cCaption != nil // don't use Empty() here or blank texts will not show
// ::SetText( ::cCaption ) previous code
SetWindowText( ::hWnd, cText ) // new
else
::cCaption = ::GetText()
endif
...
//-----------------------------------------------
WINDOWS.PRG
Instead of:
SetWindowText( ::hWnd, cText ) // new
it should be:
SetWindowText( ::hWnd, ::cCaption ) // new