Function Reference


_GUICtrlIpAddress_ClearAddress

Clears the contents of the IP address control

#include <GuiIPAddress.au3>
_GUICtrlIpAddress_ClearAddress ( $hWnd )

Parameters

$hWnd Handle to the control

Return Value

None.

Related

_GUICtrlIpAddress_IsBlank, _GUICtrlIpAddress_Set

Example

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

Example()

Func Example()
        Local $hGui, $hIPAddress

        $hGui = GUICreate("IP Address Control Clear Example", 400, 300)
        $hIPAddress = _GUICtrlIpAddress_Create($hGui, 10, 10)
        GUISetState(@SW_SHOW)

        _GUICtrlIpAddress_Set($hIPAddress, "24.168.2.128")

        ; Clear the IP Address
        MsgBox($MB_SYSTEMMODAL, "Information", "Clear IP Address")
        _GUICtrlIpAddress_ClearAddress($hIPAddress)

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