vladedoty Posted January 9, 2014 Posted January 9, 2014 (edited) When using Switch/Case/EndSwitch getting values from the GUI can i use Or expressions in Case? For example.. Switch GuiCtrlRead($txtMsg) Case "Not Now" Or "Later" Or "Tomorrow" Or "Last Week" MsgBox("Response", "Contact....", 1) Case Else MsgBox("Response", "Email....", 1) EndSwitch Edited January 9, 2014 by vladedoty
michaelslamet Posted January 9, 2014 Posted January 9, 2014 (edited) Hi, Try [autoit] Case "Not Now", "Later", "Tomorrow", "Last Week" [/autoit] Edited January 9, 2014 by michaelslamet
vladedoty Posted January 9, 2014 Author Posted January 9, 2014 Ahh So that is the correct syntax Thx for the quick response
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