rtalmeida Posted September 6, 2017 Posted September 6, 2017 Hi, does anyone have any idea what would be the best practice to avoid two clicks on a uniBitBtn?Thank you. Quote
rgreat Posted September 6, 2017 Posted September 6, 2017 Disable button on click or filter double clicks by timeout. Quote
Sherzod Posted September 7, 2017 Posted September 7, 2017 Hi, Hi, does anyone have any idea what would be the best practice to avoid two clicks on a uniBitBtn? Thank you. Do you mean double click or? Quote
rtalmeida Posted September 8, 2017 Author Posted September 8, 2017 avoid double-clicking, not to run two or more times the same statement. Quote
Freeman35 Posted September 9, 2017 Posted September 9, 2017 you can use tag property and cotrol it on OnClick for example: if Sender.Tag>2 then begin showmessage('Clicked more then 2'); Exit; end else Inc(Sender.Tag); ..... Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.