We are using the below code to update on ButtonClick Event.
After Button Click, If we update any field, it gives error “Row has been modified by another user and couldn’t be updated.”
bool BtnS;
EpiDataView edvUpd= (EpiDataView)this.oTrans.EpiDataViews[“OrderHed”];
edvUpd.dataView[edvUpd.Row][“AutoPrintReady”]= true;
BtnS = oTrans.Update();
oTrans.NotifyAll(true);
oTrans.Refresh();
Any help would be appreciated.