If youre not using a DAtaview, thisll get you satarted..
Code:
Dim sTable As String = "myTable"
Dim dt As New DataTable(sTable)
dt = ds.Tables(sTable)
Dim dv As New DataView(dt)
Datagrid1.DataSource = dv
dv.AllowDelete = False
dv.AllowEdit = False
dv.AllowNew = False
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.