datagridview and dataview
C#
1
Posts
1
Posters
0
Views
1
Watching
-
i have a problem with datagridview it's datasource is dataview when i try to add new row in datagrid view it does not added and this is my code DV_Obligetory = DS_Subject.Tables["Subjects"].DefaultView; DV_Obligetory.RowFilter = "Subject_Type='optional'"; DV_Obligetory.AllowDelete = true; DV_Obligetory.AllowEdit = true; DV_Obligetory.AllowNew = true; BindingSource Binging=new BindingSource(); Binging.DataSource=DV_Obligetory; Binging.AllowNew = true; dg_obligatory.DataSource = Binging; thnx 4 help
MD_NADA