0104: Expected a value for the switch case
Compiler expected a value to follow the case
keyword but found something else.
This error may occur if left case
alone on the line:
Possible solutions:
make sure you follow the switch statement syntax and provide a value compatible with the switch variable, i.e. a number or a string. Values can be comma-delimited if they work for the same case.
Last updated