Libraries: EasyAndFastGUI library for creating graphical interfaces - page 17

 

Archive with the latest version of the library in the trailer.

Files:
Files.zip  422 kb
 

About window_index I have sketched it, sent it to bitbucket.

In this variant each element will store window index.

 

Hi


Its possibel to ALIGN a Label?


Thanks for help 

 

Hi Anatoly Kazharsky, a taste of an amateur who follows your excellent work.

The problem was found in EasyAndFastGUI gallery and in the article EXPERT COMERIAL WITH GRAPHIC INTERFACE: FUNCTIONALITY OF FILLING (PART II)

Attached image of the error:


I don't know what the problem is, can you help me ???. CONGRATULATIONS ...

GUI COMMERCIAL EXPERT: FILLING FUNCTIONALITY (PART II)
 
Yes, I had asked to be included, but in the end I did it myself lol.
 
ericsebestyen:
Yes, I had asked to be included, but in the end I did it myself lol.

Top, if you don't have it, you go and do it. Could you share the code?

 
how could it be possible to work in MT4 proficiently? I downloaded the archive of EasyAndFastGUI, it actualy does't work in MT4  as especially, the TextBox.mqh file is not compatible with MT4.
 
17334708:
how could it be possible to work in MT4 proficiently? I downloaded the archive of EasyAndFastGUI, it actualy does't work in MT4  as especially, the TextBox.mqh file is not compatible with MT4.

Why would you expect it to be compatable?

It's for MQL5

 

Early on it was developed in MQL4 and MQL5 but the last few examples are for MQL5.

This does not mean that it can not be made to work in MQL4.

The code usually needs a few small bits of adjustments.

 

Bug found in 'Controls\DropCalendar.mqh' line 238

void CDropCalendar::SelectedDate(constdatetime date)
  {
//--- Установим и запомним дату
   m_calendar.SelectedDate(date);
//--- Отобразим дату в поле ввода комбо-бокса
   m_date_box.LabelText(::TimeToString(date,TIME_DATE));
  }

This function should be modified as:

void CDropCalendar::SelectedDate(constdatetime date)
  {
//--- Установим и запомним дату
   m_calendar.SelectedDate(date);
//--- Отобразим дату в поле ввода комбо-бокса
   m_date_box.SetValue(::TimeToString(date,TIME_DATE));
  }