I have a page control with 11 pages and each page has a back and next bevel button. The action event of each button simply adds or subtracts 1 from the page.value property.
Problem is when I need to page through the different pages to get to a specific one several pages away, like from page 2 to page 8, When I click the next button on the displayed page every is good. But when I quickly click the button on the next page it doesn’t do anything. Wait a second or 2 and it works fine. At first I thought it was reading it as a double-click event except they are 2 different controls and there is no double click event for the bevel button anyway.
So why does it take a second before the button works and can I fix it. Is it just the time it takes to open the control?
It looks like you’ve found a bug there, if you move the mouse a bit while you click it works as expected. Its like the code to check for double click distance checks is getting in the way of allowing a different button to work because the mouse hasn’t actually moved but the button is now different.
This works as expected on Windows though.
Might want to create a feedback if there isn’t one already.
Thanks for verification Julian. So it really is a problem
I just decided to move the buttons off the page control and then use SELECT CASE to handle the differences I had between the pages. But if I should file a feedback I will be glad to do so.