Hallo,
ich hab ein problem (bin neu bei autoit) mit meinem script das soll eine domain zu ner ip umwandel aber immer wenn man auf den button drückt kommt als meldung "False".
Hier mal das script
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Domain to IP", 234, 184, 195, 124)
$Input1 = GUICtrlCreateInput("Domain hier rein :)", 8, 16, 209, 21)
$Button1 = GUICtrlCreateButton("IP herrausfinden", 8, 48, 201, 65, $WS_GROUP)
$Label1 = GUICtrlCreateLabel("(Made by tooti)", 0, 136, 204, 34)
GUICtrlSetFont(-1, 20, 400, 0, "el&font gohtic!")
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
Case $Button1
IP()
EndSwitch
WEnd
Func IP()
TCPStartup()
msgbox(0,"IP???",$Input1=TCPNameToIP() )
Exit
IP()
EndFunc