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
Periodically I encounter such hangs after all kinds of manipulations with the window. The panel does not react (or rather it reacts after a few seconds). I don't even know how to debug it, as I don't understand how to reproduce it yet. Where can something loop there?
Sometimes the bottom scroll disappears and then reappears....
Maybe it's something in the Expert Advisor itself. I'll take another look.
Maybe you are trying to load something and the thread just stops, as an example, use WebRequest.
Hello Anatoli,
thanks for the massive work you have put into this new GUI. Unfortunately, I am not able to compile most of the mqh-files.
In particular the compiler complains: class 'CWindow' is undefined.
Any ideas what has to be updated, fixed or am I doing something wrong?
Also, I have also unpacked the images to the folder 'Images\EasyAndFastGui'.
Best regards,
Marcel
Those are includes.
Did you try to compile just the main program ?
In CTable table with AutoXResizeMode(true) the width of columns does not change when the window width changes. Only the right scroll bar moves.
ColumnResizeMode is set to true.
In CTable table with AutoXResizeMode(true) the width of columns does not change when the window width changes. Only the right scroll bar moves.
ColumnResizeMode is set to true.
Perhaps you expect the width of the columns to change proportionally relative to the total width of the table. If so, this feature is not implemented now.
The ColumnResizeMode() method enables the ability to change column widths by dragging column borders manually.
Perhaps you expect the width of columns to change proportionally to the total width of the table. If so, this feature is not implemented now.
The ColumnResizeMode() method includes the ability to change column widths by dragging column borders manually.
Yes, you need either a proportional increase in the width of all columns, or only the last column. The second is preferable.
But in the current version it is problematic to implement it even by yourself, because I didn't find a method in your class to get the current column width, and all fields are private. In general, at least this method should be added.
And one more thing on the topic of missing methods: the CListView class has a SetValue method, but there is no GetValue.
I will try to find time and write an article with updates for this library. I already have it significantly different from what is published on the site.
I'll try to find time and write an update article for this library. I already have it significantly different from what is published on the site.
You can post betas here regularly without articles. People will be testing them while you write the article, I think it will be much more productive. And maybe in the process of writing the article some pitfalls that you didn't notice will be revealed.
Hi Marco,
What "main program" do you refer to? Can you name the file?