函数参考


_GUICtrlIpAddress_Set

设置IP地址控件中的IP地址

#Include <GuiIPAddress.au3>
_GUICtrlIpAddress_Set($hWnd, $sAddress)

参数

$hWnd 控件句柄
$sAddress IP 地址字符串

返回值

None.

注意/说明

None.

相关

_GUICtrlIpAddress_Get, _GUICtrlIpAddress_ClearAddress

示例/演示


#include <GUIConstantsEx.au3>
#include <GuiIPAddress.au3>

$Debug_IP = False ; Check ClassName being passed to IPAddress functions, set to True and use a handle to another control to see it work

_Main()

Func _Main()
    Local $hgui, $hIPAddress

    $hgui = GUICreate("IP Address Control Set (String) Example", 400, 300)
    $hIPAddress = _GUICtrlIpAddress_Create($hgui, 10, 10)
    GUISetState(@SW_SHOW)

    _GUICtrlIpAddress_Set($hIPAddress, "24.168.2.128")

    MsgBox(4160, "信息", "IP Address: " & _GUICtrlIpAddress_Get($hIPAddress))

    ; Wait for user to close GUI
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc   ;==>_Main