Page 1 of 1

Themed app with slow refresh

Posted: Thu Mar 30, 2006 7:26 pm
by Enrico Maria Giordano
There is a big difference regarding resize refresh speed if the manifest file is linked or not to the following sample. Any workaround?

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
EMG

Posted: Sat Apr 01, 2006 9:01 am
by Antonio Linares
Enrico,

FWH does not do anything regarding the XP manifest. Its a Windows standard built-in behavior.

Posted: Sat Apr 01, 2006 10:04 am
by Enrico Maria Giordano
Ok, but I'm looking for a workaround to speed up the refresh...

EMG