tomm88:
Hello,
I want to enable or disable all other buttons when I click on a button
I tried this but it doesn't works
When you have this line:
m_button2.Disable();
You can check m_button2's status in button2's OnClick() function, with this line:
if (m_button2.IsEnabled()) { // Do what's necessary }
Okay thank you
Now it works
Now it works

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hello,
I want to enable or disable all other buttons when I click on a button
I tried this but it doesn't works