Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 06/01/2013 in all areas

  1. Andreik

    mus++

    This script is too good to not make a graphic interface with portatives and all stuffs.
    2 points
  2. GreenCan

    mus++

    czardas, This is beautiful. You will make all of us musicians. I always wanted to be a rock star, but I only became a good gardener... Happy birthday retroactively GreenCan
    1 point
  3. Melba23

    Inputbox focus/not focus

    Terenz, Perhaps like this: #include <GUIConstantsEx.au3> #include <WinAPI.au3> Global $aInput[2] $hGUI = GUICreate("Test", 500, 500) $aInput[0] = GUICtrlCreateInput("Some text 1", 10, 10, 200, 20) $aInput[1] = GUICtrlCreateInput("Some text 2", 10, 40, 200, 20) GUISetState() While 1 Switch GUIGetMsg() Case $GUI_EVENT_CLOSE Exit Case $GUI_EVENT_PRIMARYUP For $i = 0 To UBound($aInput) - 1 If _WinAPI_GetFocus() = GUICtrlGetHandle($aInput[$i]) Then GUICtrlSetData($aInput[$i], "") ExitLoop EndIf Next EndSwitch WEnd Any use? M23
    1 point
×
×
  • Create New...