Libraries: EasyAndFastGUI library for creating graphical interfaces - page 3

 
Nikita Avramenko:

Good afternoon, I noticed one very strange feature in your library for tables. When adding/removing columns (about 20-30) via

m_table.AddRow(1);
scrolling does not update until you move any of the columns. Is this a bug or am I just not updating the table correctly?

Try updating the scrolling separately.

 

Maybe someone will need it...

In Table.mqh, in ChangeScrollsSize comment out the line

if(m_scrollv.YSize()!=y_size)

True, after the update, the scroll disappears before the cursor is hovered over it. I am still dealing with this problem.
 
Nikita Avramenko:

Maybe someone will need it...

In Table.mqh, in ChangeScrollsSize, comment out the line

if(m_scrollv.YSize()!=y_size)

True, after the update, the scroll disappears before the cursor is hovered over it. I am still dealing with this problem.

Example:

      //--- Build table by number of parameters
      m_table_param_fm.Rebuilding(2,total);
      //--- Set the header names
      m_table_param_fm.SetHeaderText(0,"Description");
      m_table_param_fm.SetHeaderText(1,"Value");
      //--- Array of text alignment in columns
      ENUM_ALIGN_MODE align[COLUMNS2_TOTAL_FM]={ALIGN_RIGHT,ALIGN_LEFT};
      m_table_param_fm.TextAlign(align);
      //--- Update table
      m_table_param_fm.Update(true);
      m_table_param_fm.GetScrollVPointer().Update(true);
      m_table_param_fm.GetScrollHPointer().Update(true);
 
Anatoli Kazharski:

Example:

Thank you for your help!

 
 

I have such a strange thing:

when you click on Combobox, the form is locked, but when you select or click on an empty space to hide it, the form is not unlocked!

 
Andrii Djola:

I have this weird thing:

When you click on Combobox, the form is locked, but when you select or click on an empty space to hide it, the form is not unlocked!

I couldn't reproduce it:


 
Could you please tell me how it is easier to save values of checkboxes and Edit's when switching between timeframes? Now they are created anew, but if the window is minimised, it is remembered when changing the timeframe.... I have never been able to figure out how to get on the tail here....
 
Sergey Porphiryev:
Could you please tell me how it is easier to save values of checkboxes and Edit's when switching between timeframes? Now they are created anew, but if the window is minimised, it is remembered when changing the timeframe.... I have never been able to figure out how to get on the tail here....

Write to a file and take these values from there when initialising the program.

 
Anatoli Kazharski | 12 Oct 2016 at 14:54 RU
Pavel Kolchin:

Will there be a mini-manual on how to use the current version of the library without studying all the previous articles?

Yes, but only after the main part of the library and all the necessary functionality will be formed.


Thank you, but I would like to repeat the question

Will there be a mini-manual how to use the current version of the library without studying all the previous articles?