Discussion of article "Graphical Interfaces X: Updates for the Rendered table and code optimization (build 10)" - page 2
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
Alexander:
Когда я закомментировал в файле MainWindow.mqh эксперта TestLibrary07 2 строки 22 и 23 //m_window.AutoXResizeMode(true); и //m_window.AutoYResizeMode(true); то все стало почему то работать нормально.
As a quick fix, in the WndEvents.mqh file, in the CWndEvents::CheckExpertSubwindowNumber() method, replace this condition...:
//+------------------------------------------------------------------+
//| Checking and updating the number of the Expert Advisor window |
//+------------------------------------------------------------------+
void CWndEvents::CheckExpertSubwindowNumber(void)
{
//--- Exit if it is not an expert
if(PROGRAM_TYPE!=PROGRAM_EXPERT)
return;
//---
...
}
... extended version:
//| Checking and updating the number of the Expert Advisor window |
//+------------------------------------------------------------------+
void CWndEvents::CheckExpertSubwindowNumber(void)
{
//--- Exit if (1) it is not an EA or (2) the EA GUI is in the main window
if(PROGRAM_TYPE!=PROGRAM_EXPERT || !EXPERT_IN_SUBWINDOW)
return;
//---
...
}
Yes, everything works now. After looking at these experts I have a question about the purpose of the input line in TestLibrary07. I thought that you can enter text there and when you press Enter, this text will appear on the next panel where all lines are located, but I think it is not so. And the very logic of inserting this text input line suggests that this is what it is intended for.
Thank you so much!
I look forward to continuing to publish.
Automatic help on the current version
This is very timely.
And for libraries like this, it's a must.
We're reaching a new level of standardisation.... )
Thanks Rashid!
Automatic help on the current version
Thanks. Needed.
[Experts]
Author=Copyright 2015, MetaQuotes Software Corp.
Address=http://www.mql5.com
Optimize=0
...
//---
Then everything will compile quickly:
//---
Question: where to find this parameter Optimize, I have 1755 and 1816 versions on different computers, but there is no such parameter?
...
Question: where to find this parameter Optimise, I have 1755 and 1816 versions on different computers, but there is no such parameter?
You can quickly find it in notepad like this: