08-11-2007 03:10 PM
08-11-2007 03:56 PM
I probably don't fully understand without seeing the code.
Can't you simply use a case structure with four cases and a single ouput tunnel, which you would wire from the result of each case?
08-11-2007 04:18 PM
@altenbach wrote:
I probably don't fully understand without seeing the code.
Can't you simply use a case structure with four cases and a single ouput tunnel, which you would wire from the result of each case?
08-11-2007 04:56 PM
@Vraagteken wrote:
... does this help?
OK, maybe I am starting to understand what you want.
Easiest: Use a "radio button control"!
If you want to keep the buttons seperate, make them into an array and search for the first true value using search 1D array. Then use the index as number. (This assumes that only one button is active at any given time).
If you want to be able to distignuish between all 16 different combinations (0-4 on concurrently), use boolean array to number.
08-11-2007 05:25 PM
altenbach wrote:If you want to be able to distignuish between all 16 different combinations (0-4 on concurrently), use boolean array to number.
08-11-2007 06:12 PM
08-12-2007 07:36 AM
05-20-2013 05:46 AM
i am also working that kind of problem
but the main differnce is that i did'nt want to change other button status
pls help me
welcome to any suggestion
05-20-2013 05:54 AM
You can try using the array of switch or no of switches by replacing the radio buttons.
05-20-2013 07:34 AM
@Pardeep wrote:
i am also working that kind of problem
but the main differnce is that i did'nt want to change other button status
pls help me
welcome to any suggestion
If you want several buttons and they should be able to be active at once, an array of buttons (booleans) is the easiest way to go.
/Y