Libraries: EasyAndFastGUI library for creating graphical interfaces - page 16

 
If you can add some reflexion to gui classes, or some kind of propperty system, someone can implement a script or EA that would be a WYSIWYG UI editor. It would bee nive, I think.
 

hi guys, 

I've been trying to hide a control in my ea using the method hide but doesn't work , some of you have an exemplo how to hide a control depending the button  was clicked ? 
sorry for my dummy question . 

best regards 

 
What version of EasyAndFastGUI library is in the downloads and is it a complete version for MT4 & MT5?
 

sorry but some of you all are having any problem about some characters like "~" or "^" in text edit  ?

after these last updates I started to have problem  

regards 

 

Hello community,

First, I would like to express my gratitude to @Anatoli Kazharski for this library.

I have a question regarding the  ExampleEAF in the library. The  OnTimer functions are invoked, but I am unable to locate the code where the timer is set.

Thank you for your assistance!

 

Hello,

where has

CTextEdit:AlignMode(ENUM_ALIGN_MODE mode) 

mentioned In this article from 2017:

https://www.mql5.com/en/articles/2829

gone? Thank you
Graphical Interfaces X: Text Edit box, Picture Slider and simple controls (build 5)
Graphical Interfaces X: Text Edit box, Picture Slider and simple controls (build 5)
  • www.mql5.com
This article will consider new controls: Text Edit box, Picture Slider, as well as additional simple controls: Text label and Picture. The library continues to grow, and in addition to introduction of new controls, the previously created ones are also being improved.
 

Hello, some time ago I asked Anatoli Kazharski about a problem when deleting all the rows from the Table control that has images, unfortunately it seems that currently there is no more support for those of us who bought version 2.22, consulting with other users we solved the problem with a single line of code, I hope it is useful to those who have the same problem.  The modification was made in the Table.mqh file

//+------------------------------------------------------------------+
//| Deletes all rows                                                 |
//+------------------------------------------------------------------+
void CTable::DeleteAllRows(const bool redraw = false) {
//--- Set dimension
  TableSize(m_columns_total, 1, false);
//--- Clear cells
  for(uint i = 0; i < m_columns_total; i++) {
    m_columns[i].m_data_type = TYPE_STRING;
    SetValue(i, 0, "");
    m_columns[i].m_rows[0].m_back_color        = m_back_color;
    m_columns[i].m_rows[0].m_custom_back_color = false;
    m_columns[i].m_rows[0].m_text_color        = m_label_color;
    m_columns[i].m_rows[0].m_custom_text_color = false;
    


    //-- ADD THIS LINE IN THIS PLACE !!
    ArrayFree(m_columns[i].m_rows[0].m_images);
    

  }
//--- Set default values
  m_selected_item_text     = "";
  m_selected_item          = WRONG_VALUE;
  m_last_sort_direction    = SORT_ASCEND;
  m_is_sorted_column_index = WRONG_VALUE;
//--- Calculate and set new table sizes
  RecalculateAndResizeTable(redraw);
}
 

Can anyone share the code of the examples?

 
Hello community. I want to get latest EasyAndFastGUI v2.0 (English translated version). But I can't find the download link anywhere. Could you tell me how to get it?
 
Hello Fellow Community Members,
I am looking to download latest version -  EasyAndFastGUI v2.0. Please advise how to download it. I tried it in Market Place but it not available. Any help will be much appreciated.