when i first load my data from xml file ,i can see all of it in datagridview,bu t when i try to add or insert a record at end ,datagridview only show the added record,not all of them all toghether
this doesnt work ,i saw it on internet
myRow = myDataTable.New Row();
myRow.Columns["Col1"].Value = "Abc";
myRow.Columns["Col2"].Value = "Xyz";
myDataTable.Row s.Add(myRow);
//it ask for tablename,datas et ,everything all over again
this doesnt work ,i saw it on internet
myRow = myDataTable.New Row();
myRow.Columns["Col1"].Value = "Abc";
myRow.Columns["Col2"].Value = "Xyz";
myDataTable.Row s.Add(myRow);
//it ask for tablename,datas et ,everything all over again
Comment