Subject Re: [IBO] Re:Record was not located to update
Author hobbit
Not sure if this is going to help, but I suspect its the grid that's
complaining about all the updates happening in the background while it's
monitoring the data.

Try adding this code around your update code.

IBOQuery1.DisableControls();
// do your updates here
IBOQuery1.EnableControls();

Anyway, my 2c for free
Gary