I have populate the DataGridView through DataAdapter.
How can I add additional field in DataGridView for Serial Number & CheckBox

[VBCODE]
Dim daView As SqlDataAdapter
Dim dtView As New DataTable
Dim SqlString As String
lblTable.Text = TableName
SqlString = "select * from " & TableName
Try
daView = New SqlDataAdapter(SqlString, Con)
daView.Fill(dtView)
dgView.DataSource = dtView
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
[/VBCODE]

thanks