Re: To associate the value of a control like a value of a selector of a CASE Structure

2004-04-08 Thread Joe Guo
The Case selector value can only be decided during edit mode.  It can
not be dynamic in execution.

Joe



To associate the value of a control like a value of a selector of a CASE Structure

2004-04-08 Thread Jaime3201
I need that the value of the selector of a CASE Structure is din=E1mic.
To need to connect the value of the selector with a numeric Control



Re: To associate the value of a control like a value of a selector of a CASE Structure

2004-04-08 Thread Dennis Knutson
I'm not sure exactly what you mean. A case selector may be a Boolean,
a string, an enum, or a number. You cannot dynamically add cases
though so you would have to anticipate each possible value when you
write the program. You can even specify a range. For example, if you
have a numeric control wired to the selector, a value of ..0 in the
case selector label would handle x less than or equal to 0, 1..3 would
handle x greater or equal to 1 and less than or equal to 3, 4.. would
be x greater than or equal to 4.