Hello,
I modify one row of a datatable
with this code
DataRow drCurrent = _dsDowntime.Tab les["PPE_DOWNTI ME"].Rows[numRow];
drCurrent.Begin Edit();
drCurrent["Automatic"]=txbCAuto.Text;
drCurrent["DowntimeSt art"]=txbbeg.Text;
drCurrent["DowntimeEn d"]=txbEnd.Text;
drCurrent.EndEd it();
but i can't see any change when I reload the data
even if i request for their current state
Franck
I modify one row of a datatable
with this code
DataRow drCurrent = _dsDowntime.Tab les["PPE_DOWNTI ME"].Rows[numRow];
drCurrent.Begin Edit();
drCurrent["Automatic"]=txbCAuto.Text;
drCurrent["DowntimeSt art"]=txbbeg.Text;
drCurrent["DowntimeEn d"]=txbEnd.Text;
drCurrent.EndEd it();
but i can't see any change when I reload the data
even if i request for their current state
Franck
Comment