On your VI diagram, right click on the enum control and select Create->Property Node, then select the property "Strings[]". This will return an array of all the choices in the enum. You can then feed this array to a For loop and inside that put a case statement for each possible choice (if each choice does something different). Inside the For loop, you can program whatever you want, actually.
Is this more what you're looking for?
Rob