Hi,
Can you please post your code, with a little more detailed.
When you say too fast, do you mean they click the button more than 1 time?
If so technically the Auto-disable property should block that if its turned on.
Either way, another option would be to place a Context Variable when the form loads and set it true, for instance
UpdateContext({ canClick: true} );
Then in the controls OnChange
in the first line of code
UpdateContext( { canClick: false});
then the last line of the controls OnChange
UpdateContext({canClick: true } );
Then put canClick in the controls DisplayMode so it will disable itself until the onchange is done
If(canClick, DisplayMode.edit, DisplayMode.Disabled);
As Warren said, I have never seen this, and I am not sure what a patch conflict even means.
also, becareful if you are using Concurrent