Jump to content

Simple Problem, Can't find the answer


Go to solution Solved by Valuater,

Recommended Posts

Posted (edited)

Hello, Please look at the code:

; As always, this is a decoy script ;)

Global $sNum = Random(1, 4, 1) & "E"

Switch $sNum
    Case "1E" And "2E"
        MsgBox(64, "TEST", "1E or 2E")
    Case "3E" And "4E"
        MsgBox(64, "TEST", "3E or 4E")
EndSwitch

MsgBox(64, "TEST", "The number was: " & $sNum)

If $sNum = 1E or 2E it works, but when $sNum = 3E or 4E it shows the MsgBox for 1st Case

How can I get it to work?

Thanks In Advance

TD :)

Edited by TheDcoder

EasyCodeIt - A cross-platform AutoIt implementation - Fund the development! (GitHub will double your donations for a limited time)

DcodingTheWeb Forum - Follow for updates and Join for discussion

Posted

$sNum = 1E or 2E

You correctly describe what you want, but code something different.

My UDFs and Tutorials:

  Reveal hidden contents

 

Posted

Why new, have a look at the help file!

My UDFs and Tutorials:

  Reveal hidden contents

 

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
×
×
  • Create New...