How can i change the text color i table, the true becoming GREEN, and the text in Fals becoming RED. Someone can help me to resolve this problem with a sample, because when i run the program all text becoming green in (TRUE) and than when i chang it to the (fals) all becoming Red.
If I understood you correctly, you want the color to change red/green depending on the input button. If you want a particular cell in the table to change color ratrher than the whole table, you need to set the active cell to be the desired cell.
Yes. If you right click the Active Cells property and select Help for Active Cell, you'll see the allowed values and what cells they affect. If you had a row header, a -2 would change that as well.
Thank you Dennis for replying me the sample it working, but when I am try to use it like sub vi I can not get the color in main vi. can you help me with a sample Thank you Diallo
Modifying the properties of a control in a subVI do not modify the properties of a different control in the main VI. The data is the only thing passed back from the subVI. To modify the properties of the table in the main, you need to pass a reference to it to the subVI and modify it's properties. I've attached a modified llb that does what you want.