检索控件内的 IP 地址,返回地址字段数据数组.
#Include <GuiIPAddress.au3>
_GUICtrlIpAddress_GetArray($hWnd)
$hWnd | 控件句柄 |
成功: | 返回如下格式数组: |
[0] - 第一地址字段 | |
[1] - 第二地址字段 | |
[2] - 第三地址字段 | |
[3] - 第四地址字段 |
#include <GUIConstantsEx.au3>
#include <GuiIPAddress.au3>
$Debug_IP = False ; 检查传递给 IPAddress 函数的类名, 设置为真并使用另一控件的句柄可以看出它是否有效
Global $iMemo
_Main()
Func _Main()
Local $hgui, $aIP[4] = [24, 168, 2, 128], $hIPAddress
$hgui = GUICreate("IP Address Control Get (Array) Example", 400, 300)
$hIPAddress = _GUICtrlIpAddress_Create($hgui, 2, 4, 125, 20)
$iMemo = GUICtrlCreateEdit("", 2, 28, 396, 270, 0)
GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New")
GUISetState(@SW_SHOW)
_GUICtrlIpAddress_SetArray($hIPAddress, $aIP)
$aIP = _GUICtrlIpAddress_GetArray($hIPAddress)
MemoWrite("Field 1 .....: " & $aIP[0])
MemoWrite("Field 2 .....: " & $aIP[1])
MemoWrite("Field 3 .....: " & $aIP[2])
MemoWrite("Field 4 .....: " & $aIP[3])
; 等待用户关闭 GUI
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc ;==>_Main
; 写入一行到 memo 控件
Func MemoWrite($sMessage)
GUICtrlSetData($iMemo, $sMessage & @CRLF, 1)
EndFunc ;==>MemoWrite