i use this small script to see my IP etc... i want to move this code to GUI and so i can do "refresh" to the IP etc... i need Exit and refresh button. #include <INet.au3> $Public = _GetIP() if $Public = 0 Then $Public = "Error local IP" EndIf $lan1 = @IPAddress1 $lan2 = @IPAddress2 $name = @ComputerName MsgBox(0, "IpConfig", "Public IP: " &$Public & @CRLF & @CRLF & "Local IP: " & $lan1 & @CRLF & @CRLF & "Local LAN 2: " & $lan2 & @CRLF &a