Retrieves the address from the IP address control
#include <GuiIPAddress.au3>
_GUICtrlIpAddress_GetEx ( $hWnd )
$hWnd | Handle to the control |
_GUICtrlIpAddress_Get, _GUICtrlIpAddress_GetArray, _GUICtrlIpAddress_SetEx
#include "Extras\HelpFileInternals.au3"
#include <GUIConstantsEx.au3>
#include <GuiIPAddress.au3>
#include <StructureConstants.au3>
Example()
Func Example()
Local $hGui = GUICreate("IP Address Control Get/Set Ex (v" & @AutoItVersion & ")", 400, 300)
Local $hIPAddress = _GUICtrlIpAddress_Create($hGui, 2, 4, 125, 20)
_MemoCreate(2, 28, 396, 270, 0)
GUISetState(@SW_SHOW)
Local $tIP = DllStructCreate($tagGetIPAddress), $aIP[4] = [24, 168, 2, 128]
For $x = 0 To 3
DllStructSetData($tIP, "Field" & $x + 1, $aIP[$x])
Next
_GUICtrlIpAddress_SetEx($hIPAddress, $tIP)
$tIP = _GUICtrlIpAddress_GetEx($hIPAddress)
For $x = 0 To 3
_MemoWrite("Field " & $x + 1 & " .....: " & DllStructGetData($tIP, "Field" & $x + 1))
Next
; Wait for user to close GUI
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc ;==>Example