J Jason Feb 28, 2004 #1 CType(e.Item.Cells(3).Controls(0), TextBox).Text I want to use this in c# how can i DO that?? thx
K Klaus H. Probst Feb 28, 2004 #3 Indexers are accessed with square brackets, like Cells[3].Controls[0]
M Mark Rae Feb 28, 2004 #5 CType(e.Item.Cells(3).Controls(0), TextBox).Text I want to use this in c# how can i DO that?? thx Click to expand... ((TextBox)(e.Item.Cells[3].Controls[0])).Text
CType(e.Item.Cells(3).Controls(0), TextBox).Text I want to use this in c# how can i DO that?? thx Click to expand... ((TextBox)(e.Item.Cells[3].Controls[0])).Text
J Jason Feb 28, 2004 #6 thx all Mark Rae said: CType(e.Item.Cells(3).Controls(0), TextBox).Text I want to use this in c# how can i DO that?? thx Click to expand... ((TextBox)(e.Item.Cells[3].Controls[0])).Text Click to expand...
thx all Mark Rae said: CType(e.Item.Cells(3).Controls(0), TextBox).Text I want to use this in c# how can i DO that?? thx Click to expand... ((TextBox)(e.Item.Cells[3].Controls[0])).Text Click to expand...