TWBrowse flickering on dialog
Posted: Tue Nov 21, 2006 11:12 am
This is the sample (try to resize the dialog):
How can I get rid of the flickering?
EMG
Code: Select all
#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oDlg, oBrw
USE TEST
DEFINE DIALOG oDlg
oDlg:nStyle = NOR( oDlg:nStyle, WS_THICKFRAME )
@ 0, 0 LISTBOX oBrw FIELDS
ACTIVATE DIALOG oDlg;
ON INIT oDlg:SetControl( oBrw );
CENTER
CLOSE
RETURN NIL
EMG