After search all the forums, I can not find the way that make GuiToolTip worked?
#include <GuiConstantsEx.au3>
#include <GuiIPAddress.au3>
#Include <GuiToolTip.au3>
$hgui = GUICreate("IP Address Example", 300, 200)
$hIPAddress = _GUICtrlIpAddress_Create($hgui, 10, 10)
;WinSetState($hIPAddress, "", @SW_DISABLE)
_GUICtrlIpAddress_Set($hIPAddress, "24.168.2.128")
$hTool = _GUIToolTip_Create(GUICtrlGetHandle($hIPAddress))
MsgBox(0,"",_GUIToolTip_AddTool($hTool,$hgui, "sadfasdddddddddd"))
_GUIToolTip_Activate($hTool,True)
MsgBox(0,"",_GUIToolTip_GetText($hgui,GUICtrlGetHandle($hIPAddress), 0))
GUISetState(@SW_SHOW)
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE