Themed app with slow refresh

Post Reply
User avatar
Enrico Maria Giordano
Posts: 7355
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Contact:

Themed app with slow refresh

Post 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
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Enrico,

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

Antonio Linares
www.fivetechsoft.com
User avatar
Enrico Maria Giordano
Posts: 7355
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Contact:

Post by Enrico Maria Giordano »

Ok, but I'm looking for a workaround to speed up the refresh...

EMG
Post Reply