Jump to content

Recommended Posts

Posted

can somebody help me why this script doesn't functioned

$gui = GUICreate("Test",230,170)
$ipi1 = GUICtrlCreateInput("" ,10, 35, 25, 20)
GUICtrlSetLimit(-1, 3)
$label1 = GUICtrlCreateLabel(".",38,39, 4, 13)
$ipi2 = GUICtrlCreateInput("" ,46, 35, 25, 20)
GUICtrlSetLimit(-1, 3)
$label2 = GUICtrlCreateLabel(".",74,39, 4, 13)
$ipi3 = GUICtrlCreateInput("" ,81, 35, 25, 20)
GUICtrlSetLimit(-1, 3)
$label3 = GUICtrlCreateLabel(".",109,39, 4, 13)
$ipi4 = GUICtrlCreateInput("" ,117, 35, 25, 20)
GUICtrlSetLimit(-1, 3)
$button = GUICtrlCreateButton("OK", 20, 80)
GUISetState()

$ip = GUICtrlRead($ipi1) & "." & GUICtrlRead($ipi2) & "." & GUICtrlRead($ipi3) & "." & GUICtrlRead($ipi4)
While 1
$msg = GUIGetMsg()
Select
case $msg = $button
msgbox(0,"Test","IP: " & $ip)
exitloop
case $msg = $GUI_EVENT_CLOSE
exitloop
EndSelect
WEnd

[font="Times New Roman"]Jeder Narr kann Code schreiben, den ein Computer versteht.Gute Programmierer schreiben Code, den Menschen verstehen.[/font]visit http://kanreff.tk

Posted

Maybe...

#include <GUIConstants.au3>

$gui = GUICreate("Test", 230, 170)
$ipi1 = GUICtrlCreateInput("", 10, 35, 25, 20)
GUICtrlSetLimit(-1, 3)
$label1 = GUICtrlCreateLabel(".", 38, 39, 4, 13)
$ipi2 = GUICtrlCreateInput("", 46, 35, 25, 20)
GUICtrlSetLimit(-1, 3)
$label2 = GUICtrlCreateLabel(".", 74, 39, 4, 13)
$ipi3 = GUICtrlCreateInput("", 81, 35, 25, 20)
GUICtrlSetLimit(-1, 3)
$label3 = GUICtrlCreateLabel(".", 109, 39, 4, 13)
$ipi4 = GUICtrlCreateInput("", 117, 35, 25, 20)
GUICtrlSetLimit(-1, 3)
$button = GUICtrlCreateButton("OK", 20, 80)
GUISetState()


While 1
    $msg = GUIGetMsg()
    Select
        Case $msg = $button
            $ip = GUICtrlRead($ipi1) & "." & GUICtrlRead($ipi2) & "." & GUICtrlRead($ipi3) & "." & GUICtrlRead($ipi4)
            MsgBox(0, "Test", "IP: " & $ip)
            ExitLoop
        Case $msg = $GUI_EVENT_CLOSE
            ExitLoop
    EndSelect
WEnd

8)

NEWHeader1.png

Posted

Hi, welcom to forum!

You forgot(?) to put the #Include <GuiConstants.au3> in the start of script...

For debuging, better to run the script from SciTE editor, in that way you will see the error in the console (at the buttom), and then you can press F4 for jumping to line that error is accourd in.

 

  Reveal hidden contents

 

 

AutoIt is simple, subtle, elegant. © AutoIt Team

Posted

Perhaps add the style of $SW_POPUP to your GUI (in one of the parameters of the GUICreate)?

Kurt

Awaiting Diablo III..

Posted

please give me an example for an script that ping all computer in the network!

PLZ

[font="Times New Roman"]Jeder Narr kann Code schreiben, den ein Computer versteht.Gute Programmierer schreiben Code, den Menschen verstehen.[/font]visit http://kanreff.tk

Posted

  ChiefORZ66 said:

please give me an example for an script that ping all computer in the network!

PLZ

We don't give anything...

  ChiefORZ66 said:

can somebody help me why this script doesn't functioned

thats why i helped you... you tried before

8)

NEWHeader1.png

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...