albertocastillo2001 Posted March 17, 2017 Share Posted March 17, 2017 Hello I want multiple expressions from a Select Case to be evaluated. According to the behaviour of Select Case, only the first true statement is executed. Using ContinueCase will execute the code on the next case without evaluating it. Here's an example of the code: Func _mapFTM() _easyMap("K:", "\\Location\Public") _easyMap("P:", "\\Location\Users\" & @UserName) Select Case _inGroup("group1", @UserName) _easyMap("M:", "\\Location\Primedia") _easyMap("X:", "\\Location\Course Management System 4.0") ContinueCase Case _inGroup("Group2", @UserName) _easyMap("S:", "\\Location\example1") ContinueCase Case _inGroup("Group3", @UserName) _easyMap("Z:", "\\Location\Example2") ContinueCase EndCase EndFunc In case the user is on multiple groups, only the first true statement will be executed. How can I do this? The only way I can think about is using If statements, but Select is a cleaner way. Thanks Link to comment Share on other sites More sharing options...
albertocastillo2001 Posted March 17, 2017 Author Share Posted March 17, 2017 How can I evaluate multiple expressions and run the code on them without writing a messy code? Thanks! Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted March 17, 2017 Moderators Share Posted March 17, 2017 albertocastillo2001, Welcome to the AutoIt forums. Quote I want multiple expressions from a Select Case to be evaluated As this is not possible, you will have to use another way - this could well be a possibility (untested) Func _mapFTM() _easyMap("K:", "\\Location\Public") _easyMap("P:", "\\Location\Users\" & @UserName) ; Now check each group in turn For $i = 1 To 3 ; If the user is in the group If _inGroup("group" & $i, @UserName) Then ; Act accordingly Switch $i Case 1 _easyMap("M:", "\\Location\Primedia") _easyMap("X:", "\\Location\Course Management System 4.0") Case 2 _easyMap("S:", "\\Location\example1") Case 3 _easyMap("Z:", "\\Location\Example2") EndSwitch EndIf Next EndFunc Now you test the user against all groups. M23 albertocastillo2001 1 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area Link to comment Share on other sites More sharing options...
albertocastillo2001 Posted March 23, 2017 Author Share Posted March 23, 2017 (edited) Hello Melba23 Thank you very much. That would work. Edited March 23, 2017 by albertocastillo2001 Link to comment Share on other sites More sharing options...
Moderators Melba23 Posted March 23, 2017 Moderators Share Posted March 23, 2017 albertocastillo2001, My pleasure as always. M23 albertocastillo2001 1 Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area 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