 chriscarner
		
			chriscarner
		
		
		
		
		
		
		
		
	
			07-30-2014 07:40 AM
Any help is appreciated.
Solved! Go to Solution.
 GerdW
		
			GerdW
		
		
		 
		
		
		
		
		
	
			07-30-2014 07:46 AM
 Hooovahh
		
			Hooovahh
		
		
		 
		
		
		
		
		
	
			07-30-2014 07:50 AM
Looking at the property nodes available I would have guessed it was Cell Background Color, but that is only for one cell. You could iterate over all rows, and all columns, but this gives an error if there is no data there. It might not be possible to do at run-time.
Unofficial Forum Rules and Guidelines
Get going with G! - LabVIEW Wiki.
17 Part Blog on Automotive CAN bus. - Hooovahh - LabVIEW Overlord
 Miraz_Automatio
		
			Miraz_Automatio07-30-2014 07:52 AM
You can make use of property node (Active cell background colour) but you will have to put logic to change active cell position from first row first column to last row last column.
 paul_cardinale
		
			paul_cardinale
		
		
		
		
		
		
		
		
	
			07-30-2014 08:02 AM
Use a property node. Set the "Active Item:Row Number" to -2 (all rows). Set the "Active Cell:Active Column Number" to -2 (all columns). Set the "Active Cell:Background Color" to the desired color.
 P@Anand
		
			P@Anand
		
		
		
		
		
		
		
		
	
			07-30-2014 08:08 AM
@paul_cardinale wrote:
Use a property node. Set the "Active Item:Row Number" to -2 (all rows). Set the "Active Cell:Active Column Number" to -2 (all columns). Set the "Active Cell:Background Color" to the desired color.
New learning for me today. Thanks
 GerdW
		
			GerdW
		
		
		 
		
		
		
		
		
	
			07-30-2014 08:09 AM
 P@Anand
		
			P@Anand
		
		
		
		
		
		
		
		
	
			07-30-2014 08:17 AM
07-30-2014 08:23 AM
Thanks for all the quick replies, and for the answer!