Code:
Func _RefreshBot()
_GUICtrlListView_BeginUpdate($listviewmBot)
_GUICtrlListView_DeleteAllItems($listviewmBot)
$Client = WinList ("[CLASS:#32770]")
If $Client[0][0] > 0 Then
For $X = 1 To $Client[0][0]
GUICtrlCreateListViewItem($Client[$X][0], $listviewmBot)
Next
Else
GUICtrlCreateListViewItem("No Bots Found", $listviewmBot)
EndIf
_GUICtrlListView_EndUpdate($listviewmBot)
EndFunc
when I launch the script, it shows me all programs with CLASS:#32770...Is there any way to specify that I want to see only mBot windows?
I hope you understand what i want to do...If not, ask me, I can add screens...
Thanks in advance







