07-18-2008 05:11 PM
07-21-2008 12:27 PM
Hello menchar,
Thank you for posting on the NI Discussion Forums. From examining the code excerpt that you included in your post, it seems that you are attempting to declare the variable “iOutput” in an illegal place in your code. You cannot declare variables inside of a case statement. Try moving your declaration of “iOutput” to the beginning of the local function, or to the top of the source file (depending on the desired scope of the variable).
07-21-2008 12:46 PM
07-21-2008 01:56 PM
07-21-2008 06:18 PM
07-21-2008 07:46 PM - edited 07-21-2008 07:49 PM
07-21-2008 10:38 PM