There is a big difference regarding resize refresh speed if the manifest file is linked or not to the following sample. Any workaround?
EMG
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oWnd
LOCAL oGet, cVar := REPLICATE( REPLICATE( "This is a test", 30 ) + CRLF, 100 )
DEFINE WINDOW oWnd
@ 0, 0 GET oGet VAR cVar MEMO NOBORDER
oWnd:oClient( oGet )
ACTIVATE WINDOW oWnd
RETURN NILEMG