try something like this:
Table ss = new Table();
Table innertb = ss.Rows[0].Cells[0].Contro
innertb.Rows[0].Cells[0].T
This will get the first cell, of the first row of the first control(which from what I understand is your table) in the first cell of the first row of your main table.
Main Topics
Browse All Topics





by: andycroftsPosted on 2009-10-02 at 08:15:27ID: 25478707
I'v come up with this which seems to work. Is there a better way?
ells[0].Co ntrols[0]; ls[0].Cont rols[0];
Table mytable = (Table)this.Main.Rows[0].C
Label mylabel = (Label)mytable.Rows[2].Cel
mylabel.Text = "Hello World";