sometimes a new record in my DB is almost the same with the previous , i want to make a button "Create From Last" that makes a new record from last (if that is not the first rec)
I am trying something like :
object rec = BindingSource1.Current;
BindingSource1.Add(cur);
but i am getting this error:
A first chance exception of type 'System.ArgumentException' occurred in System.Data.dll
Additional information: Cannot add external objects to this list.