If I want to leave a switch statement after successfully matching a case is it better to break and rund to the end without a default statement or to exit the switch from that case?

ComboBox

on menuPick pChosen
    switch pChosen
        case "Home"
            -- code goes here
            exit switch
         case "Work"
            -- code goes here
            exit switch
    end switch
end menuPick

OR

on menuPick pChosen
    switch pChosen
        case "Home"
            -- code goes here
            break
        case "Work"
            -- code goes here
            break
    end switch
end menuPick

Thank you,

Tom McGrath
_______________________________________________
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution

Reply via email to