I have a VBA form in Excel with "Next" and "Previous" buttons that update an Image control's picture source.
I would like to be able to click these buttons very quickly in succession in order to loop through the images. However, when I click twice in short succession (double click) I only get one response.
I suspect that this is the case because there is a double click event on the button that gets triggered instead of the click event when two clicks are very close to each other.
My goal would be to disable the double-click event altogether, allowing me to click the button as quickly as I want. Is there a way to do that?
DoubleClickevent setCancel = True?