Referencing a checkbox in a table row

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Created a checkbox and added it to a table row

NewCell = NewTableCell
Dim NewCheckBox As New CheckBox
NewCell.Controls.Add(NewCheckBox)
NewRow.Cells.Add(NewCell)

I know how to reference the table row I want after the table is built, but
how do I reference the checkbox's properties like .checked, etc.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top