Jump to content

fusor

Members
  • Posts

    7
  • Joined

  • Last visited

fusor's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Many tks ResNullius & Xenobiologist. It's work fine
  2. Not found on this include ... nothing for center dialog window. an other idea?
  3. Tks Xenobiologist, It's an #include ? where is this au3 ?
  4. Hi all, Just little question for fun, It is possible to center dialogbox to the screen with function "FileOpenDialog" or "FileSaveDialog" tks, fuzzz
  5. Many Thanks for your help, enaiman & smashly It's working fine. i searched 3 days for this
  6. exactly the same problem for me, sorry another idea? PS: I'am AutoIT 3.2.2
  7. 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
×
×
  • Create New...