why this doesn't work?
AdlibRegister(test())
Func test()
MsgBox(0,"","test")
EndFunc
Only one MsgBox pops up...
And when I use it with GUI, it is too fast...
$Form = GuiCreate("Test Windows", 300, 300, 300, 300)
$label = GuiCtrlCreateLabel("0", 50,50,100,50)
GuiSetState(@SW_SHOW)
$i=0
While 1
AdlibRegister(changelabel(),2000)
$msg=GuiGetMsg()
If $msg=3 Then Exit
WEnd
Func changelabel()
$i+=1
GuiCtrlSetData($label, $i)
EndFunc
Please help...