2010/02/24

AutoIt3のメモ

...

While 1
   
    $nMsg = GUIGetMsg()
   
    Select
        Case $nMsg = $Add1
            $sItem = GUICtrlRead($Input1)
            GUICtrlSetData($List1, $sItem)
           
        Case $nMsg = $GUI_EVENT_CLOSE
            Exit
           
    EndSelect
   
WEnd