Themed app with slow refresh
Posted: Thu Mar 30, 2006 7:26 pm
There is a big difference regarding resize refresh speed if the manifest file is linked or not to the following sample. Any workaround?
EMG
Code: Select all
#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 NIL