IPアドレスコントロールからアドレスを取得します。
#Include <GuiIPAddress.au3>
_GUICtrlIpAddress_Get($hWnd)
パラメータ
$hWnd | コントロールのハンドル |
返し値
成功: IPアドレス文字列
注意
なし。
関連
_GUICtrlIpAddress_Set, _GUICtrlIpAddress_GetEx
例
#include <GuiConstantsEx.au3>
#include <GuiIPAddress.au3>
Opt("MustDeclareVars", 1)
$Debug_IP = False ; IPAddress関数に渡されるClassNameを調べる。Trueを設定すると動作確認のために他のコントロールのハンドルを使用
_Main()
Func _Main()
Local $hgui, $hIPAddress
$hgui = GUICreate("IP address control Get (String) Example", 400, 300)
$hIPAddress = _GUICtrlIpAddress_Create($hgui, 10, 10)
GUISetState(@SW_SHOW)
_GUICtrlIpAddress_Set ($hIPAddress, "24.168.2.128")
MsgBox (4160, "Information", "IP Address: " & _GUICtrlIpAddress_Get($hIPAddress))
; ユーザーがGUIを閉じるまで待機
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc ;==>_Main