Edit and Delete option with gridview
-
Hello Friends, How to convert a bound field to template field in vb .net window application In website there exist a link to convert bound field to template field. Thanks In Advance Praveen
-
Hello Friends, How to convert a bound field to template field in vb .net window application In website there exist a link to convert bound field to template field. Thanks In Advance Praveen
You are working with a completly different control. The DataGridView does not have the concept of the Template column. Google working with DataGridView, there are plenty of examples out there.
Never underestimate the power of human stupidity RAH
-
Hello Friends, How to convert a bound field to template field in vb .net window application In website there exist a link to convert bound field to template field. Thanks In Advance Praveen
You need to work with datagridview and add 2 additional columns, for example DataGridViewLinkColumn. For each one of those columns add events, for example: AddHandler DataGridView1.CellContentClick, AddressOf Lnk_CellContentClick Private Sub Lnk_CellContentClick(ByVal sender As Object, ByVal e As DataGridViewCellEventArgs) Select Case e.ColumnIndex End Select End Sub
Shay Noy