The text of this article is not in this database — only its details are. Read it on the old site: An editable GridView control in VB.NET - 2
1 Comment
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
The text of this article is not in this database — only its details are. Read it on the old site: An editable GridView control in VB.NET - 2
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment.
DavidPosted Feb 12, 2008, 10:54 AM
I am adding a row to a gridview... Dim dgv As DataGridView = _ FormMain.DataGridViewer Dim dtable As DataTable = _ TryCast(dgv.DataSource, DataTable) row = dtable.NewRow() ... How do I set a cell in the new row to be the selected cell?