Gif Posted April 28, 2007 Share Posted April 28, 2007 Case $msg = $btn_shutdown If Not StringIsInt($in_serekalointa) Then MsgBox(16, "Whole numbers Only!", "Please enter whole numbers only.") Else $in_serekalointa = Number($in_serekalointa) If $in_serekalointa < 0 Then MsgBox(0, "Error", "Error in the time, try again") ElseIf $in_serekalointa > 0 And $in_serekalointa < 100000000 And Not StringIsAlpha($in_serekalointa) Then Sleep($in_serekalointa * 1000) Shutdown(1) EndIf EndIf What is the mistake? Link to comment Share on other sites More sharing options...
bogB Posted April 28, 2007 Share Posted April 28, 2007 (edited) Case $msg = $btn_shutdown If Not StringIsInt($in_serekalointa) Then MsgBox(16, "Whole numbers Only!", "Please enter whole numbers only.") Else $in_serekalointa = Number($in_serekalointa) If $in_serekalointa < 0 Then MsgBox(0, "Error", "Error in the time, try again") ElseIf $in_serekalointa > 0 And $in_serekalointa < 100000000 And Not StringIsAlpha($in_serekalointa) Then Sleep($in_serekalointa * 1000) Shutdown(1) EndIf EndIf What is the mistake? If Not StringIsInt($in_serekalointa) Then i think that this is your mistake if not StringIsInt($in_serekalointa) == <> or what Then try this form $enything = StringIsInt($in_serekalointa) select case $enything <> 0 case $enything == 0 endselect Edited April 28, 2007 by bogB Link to comment Share on other sites More sharing options...
Shevilie Posted April 28, 2007 Share Posted April 28, 2007 Dont create new threads keep it in the same as before... you got 3 threads running with the same question..http://www.autoitscript.com/forum/index.php?showtopic=44976 Start here if you are new Valuater's AutoIT 1-2-3Looking for an UDF - Look hereDo you need to do it twice - Autoit Link to comment Share on other sites More sharing options...
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