Hello, I've looked on the internet and found a few solutions, but none of them really fit my app.
The easiest way I found to solve concurrency issues is to update the record that I'm currently editing to the latest version right as I press the button to send the update.
So I think I have to right idea, but how would I update the record before sending it?
Right now on select on the send button I have "SubmitForm([nameoftheform])"
I'd like it to be "[Function that updates record];SubmitForm([nameoftheform])"