Discussion of article "Graphical Interfaces X: Updates for Easy And Fast Library (Build 2)" - page 3

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
When to expect the update ?
If you need it urgently, you can add the following changes yourself:
1. In the Defines.mqh file, add a new identifier:
//---
2. In the CTabs and CIconTabs classes (files Tabs.mqh and IconTabs.mqh), in the ShowTabElements() method, add a line as shown in the listing below:
//---
3. Now the event with the identifier ON_CLICK_TAB can be accepted in the handler of the custom class.
Example:
I found one more error - we start the tool, move the panel away and start pressing the radio buttons. When the table is drawn, at first it starts to be drawn from the left edge, and then it kind of pulls up to the required coordinates.
Thank you, it works.
I found one more error - we start the tool, move the panel away and start pressing the radio buttons. When the table is drawn, at first it starts to be drawn from the left edge, and then it kind of pulls up to the required coordinates.
Yes, there is such a thing. Using this type of table as an example, add a line to the CCanvasTable::Show() method in the CanvasTable.mqh file as shown below:
//---
If this problem occurs with other items, add the same line to their Show() method. All element classes will have this fix in the next update.
You already developed or see anything that can work with Tabulations or Focus on Controls in the form.
I need to change the editions after i insert one input in one CEdit or CSpinEdit and press Enter or press TAB, i want to pass to the next Edit, for better usuability in my program.
Thank u so much for your contribution on the comunity.
You already developed or see anything that can work with Tabulations or Focus on Controls in the form.
I need to change the editions after i insert one input in one CEdit or CSpinEdit and press Enter or press TAB, i want to pass to the next Edit, for better usuability in my program.
At the moment this is not possible. I'll think about how to implement it.
Or, any way so i can ask an input by splash, message box or any window automaticly requested when i run the code.
I'm thinking some possibilities, and i really don't wanna use DLL, i'm not that pro yet. But i really have will. If you have me some directions or ideas i can really improve our code.
Dear Anatoli, thank you very much for your effort!
I just want to point you out that there is a typo in MenuItem.mqh, line 237, that makes it not possibile to be compiled successfully:
" > The type of the menu item can be set using the CMenuItem::TypeMenuItem()") method");
should read instead
" > The type of the menu item can be set using the CMenuItem::TypeMenuItem() method");
right?
The Edit is always flickering.
https://www.mql5.com/en/forum/274301