Hallo,
wie kann ich feststellen, ob ein ListViewitem angeklickt wurde?
[autoit]#include <GUIConstantsEx.au3>
#include <ListViewConstants.au3>
#include <WindowsConstants.au3>
#include <GUIListView.au3>
$Form1 = GUICreate("Form1", 379, 448)
$ListView1 = GUICtrlCreateListView("Prozess", 0, 0, 378, 446)
GUICtrlSendMsg(-1, $LVM_SETCOLUMNWIDTH, 0, 357)
$List = ProcessList()
[/autoit][autoit][/autoit][autoit]For $For = 1 To $List[0][0]
_GUICtrlListView_AddItem($ListView1, $List[$For][0])
Next
GUISetState(@SW_SHOW)
[/autoit][autoit][/autoit][autoit]While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd