Hallo,
ich habe wieder was vor:
möchte gerne in verschieden subnetzen Ip Informationen zu sammel.
in den folgenden subnetzen soll gescannt werden.
192.168.1.0- 192.168.140.255
Folgende info brauche ich:
Host|IP|MAC|Last Seen
Ich will mit der Combobox den Inhalt der Listview Filtern alos auswählen. von 1 - 140 und alle clients die in dieem subnetz sind anzeigen lassen.
so soll es in etwa aussehen:
[autoit]#include <GUIConstantsEx.au3>
#include <GuiIPAddress.au3>
$Form1 = GUICreate("Get", 999, 628, 226, 231)
;$Input1 = GUICtrlCreateInput("P0XXXX", 24, 72, 73, 21)
$Combo1 = GUICtrlCreateCombo("Segmente", 104, 72, 161, 25)
$IPAddress1 = _GUICtrlIpAddress_Create($Form1, 104, 8, 162, 21)
_GUICtrlIpAddress_Set($IPAddress1, "10.11.0.0")
$IPAddress2 = _GUICtrlIpAddress_Create($Form1, 104, 40, 162, 21)
_GUICtrlIpAddress_Set($IPAddress2, "10.11.255.255")
$ListView1 = GUICtrlCreateListView("Host|IP|MAC|Last Seen", 24, 104, 930, 478)
;$Date1 = GUICtrlCreateDate("2010/04/27 20:50:50", 768, 8, 186, 21)
;$ListView2 = GUICtrlCreateListView("", 768, 32, 186, 54)
$Button1 = GUICtrlCreateButton("Start Scan", 424, 24, 155, 25, 0)
;$Button2 = GUICtrlCreateButton("Stop", 424, 48, 155, 25, 0)
;$Button3 = GUICtrlCreateButton("Makierte wecken", 414, 72, 93, 25, 0)
;$Button4 = GUICtrlCreateButton("Alle wecken", 504, 72, 75, 25, 0)
GUISetState(@SW_SHOW)
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd
Kann mir jemand eine starthilfe geben?