i write a script ,and use edit and graph, every second will refresh the data of the edit and the graph.
i found the edit and the graph flash .
so i write a small example to show it.
is anybody can sovle the problem?
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Form1", 625, 443, 192, 124)
$Label1 = GUICtrlCreateLabel("Label1", 5, 5, 636, 617)
GUICtrlSetFont(-1, 39, 400, 4)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
AdlibRegister("MyAdlib",100)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Func MyAdlib()
GUICtrlSetData($Label1,"Do you see the label flash? and how to sovle it ?")
EndFunc