I want to set a checkbox to checked if a cell in a band below my toplevel has a value. how can i get the value of the child band?
toplevel
-------secondlevel
--------------thirdlevel <-- this is where the value would be.
so i need to check the cell value lenght and if >0 set chkbox on toplevel to true.
does this make sense?
Thanks
I figured it out by using ChildBands[0].Rows[0].ChildBands[0].Rows[0].Cells["t"].Value.ToString()