Check the example in the folder Indicators/Examples/Panels/SimplePanel
No it does not work correctly. It may visually check and uncheck, the method 'bool Checked(void)' may return correct value, but it doesn't mean that works correctly.
You can try, set the ids to the control after it is created, in OnInit, and maybe it will work, but the correct is use CAppDialog.
int OnInit() { clSpinEdit_NB.Create(0,"SpinEdit_NB",0,10,190,(10+60),(190+30)); clSpinEdit_NB.MinValue(1); clSpinEdit_NB.MaxValue(20); clSpinEdit_NB.Value(10); clSpinEdit_NB.Id(0); return(INIT_SUCCEEDED); }

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
Hi. Good time. I created a spin button with the following command, but the value does not change.
Also, I don't want to use it inside the panel. Can anyone help?