Originally published at: Conditional Statements: Select Case vs. If…Else Explained – Xojo Programming Blog
When you’re writing code, you often need to make decisions based on different situations. These decisions are handled using conditional statements. Conditional statements let your program choose what code to run based on whether certain conditions are true or false. Two of the main ways to do this are: Select Case and If…Else statements. They both help your program decide…
6 Likes