Hi all,
Just a little help please for stop input box flicking.
have a solution ?
#include <GUIConstants.au3>
$gui = GUICreate ( "GUI input hide", 200,200,800,200)
$input=GUICtrlCreateinput ("1953/04/25", 10,10,185,20 )
$box=GUICtrlCreateCheckbox("hide InputBox", 50,50,200,20 )
GUISetState ()
While 1
$msg = GuiGetMsg()
Select
Case $msg = $GUI_EVENT_CLOSE
ExitLoop
Case $msg = BitAND(GUICtrlRead($box), $GUI_UNCHECKED)
GUICtrlSetState($Input,$GUI_ENABLE)
Case $msg = BitAND(GUICtrlRead($box), $GUI_CHECKED)
GUICtrlSetState($input,$GUI_DISABLE)
EndSelect
WEnd