ChiefORZ66 Posted March 22, 2007 Posted March 22, 2007 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
Valuater Posted March 22, 2007 Posted March 22, 2007 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)
MrCreatoR Posted March 22, 2007 Posted March 22, 2007 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.  Spoiler Using OS: Win 7 Professional, Using AutoIt Ver(s): 3.3.6.1 / 3.3.8.1  AutoIt Russian Community My Work... Spoiler Projects: ATT - Application Translate Tool {new}| BlockIt - Block files & folders {new}| SIP - Selected Image Preview {new}| SISCABMAN - SciTE Abbreviations Manager {new}| AutoIt Path Switcher | AutoIt Menu for Opera! | YouTube Download Center! | Desktop Icons Restorator | Math Tasks | KeyBoard & Mouse Cleaner | CaptureIt - Capture Images Utility | CheckFileSize ProgramUDFs: OnAutoItErrorRegister - Handle AutoIt critical errors {new}| AutoIt Syntax Highlight {new}| Opera Library! | Winamp Library | GetFolderToMenu | Custom_InputBox()! | _FileRun UDF | _CheckInput() UDF | _GUIInputSetOnlyNumbers() UDF | _FileGetValidName() UDF | _GUICtrlCreateRadioCBox UDF | _GuiCreateGrid() | _PathSplitByRegExp() | _GUICtrlListView_MoveItems - UDF | GUICtrlSetOnHover_UDF! | _ControlTab UDF! | _MouseSetOnEvent() UDF! | _ProcessListEx - UDF | GUICtrl_SetResizing - UDF! | Mod. for _IniString UDFs | _StringStripChars UDF | _ColorIsDarkShade UDF | _ColorConvertValue UDF | _GUICtrlTab_CoverBackground | CUI_App_UDF | _IncludeScripts UDF | _AutoIt3ExecuteCode | _DragList UDF | Mod. for _ListView_Progress | _ListView_SysLink | _GenerateRandomNumbers | _BlockInputEx | _IsPressedEx | OnAutoItExit Handler | _GUICtrlCreateTFLabel UDF | WinControlSetEvent UDF | Mod. for _DirGetSizeEx UDF Examples: ScreenSaver Demo - Matrix included | Gui Drag Without pause the script | _WinAttach()! | Turn Off/On Monitor | ComboBox Handler Example | Mod. for "Thinking Box" | Cool "About" Box | TasksBar Imitation Demo Like the Projects/UDFs/Examples? Please rate the topic (up-right corner of the post header: Rating ) * === My topics === * ================================================== ==================================================    AutoIt is simple, subtle, elegant. © AutoIt Team
ChiefORZ66 Posted March 22, 2007 Author Posted March 22, 2007 THX [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
ChiefORZ66 Posted March 22, 2007 Author Posted March 22, 2007 Still one ask! How can i disable the x in an GUI? 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
_Kurt Posted March 22, 2007 Posted March 22, 2007 Perhaps add the style of $SW_POPUP to your GUI (in one of the parameters of the GUICreate)? Kurt Awaiting Diablo III..
ChiefORZ66 Posted March 22, 2007 Author Posted March 22, 2007 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
Valuater Posted March 22, 2007 Posted March 22, 2007 please give me an example for an script that ping all computer in the network!PLZWe don't give anything... can somebody help me why this script doesn't functionedthats why i helped you... you tried before8)
ChiefORZ66 Posted March 22, 2007 Author Posted March 22, 2007 Then how can i make an for-loop i doesn't understand it!!! 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
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now