if you are in a switch statement, your value of key is fixed as one, two or three.
it won't change itself if you do not check something to assign a new value to key
and it's best to make a default case in switch statements, just to not get strange results if key has another value
But when i Release the key one/two/three will back to {default:}
Steen:
where do yo uassign your new value to key ?
if you are in a switch statement, your value of key is fixed as one, two or three.
it won't change itself if you do not check something to assign a new value to key
and it's best to make a default case in switch statements, just to not get strange results if key has another value