MFP language select, case, default, ends statments:
Select, case, default and ends comprise another type of condition block besides if. They should be used like the following example:
select expr
case value1
......
break
case value2
......
break
......
......
......
default
......
ends
. Note that if there is no break at the end of a block of case, MFP will continue to execute the statements in the following case or default block.