Jump to content

Again


Gif
 Share

Recommended Posts

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

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 by bogB
Link to comment
Share on other sites

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
 Share

  • Recently Browsing   0 members

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