Libraries: EasyAndFastGUI library for creating graphical interfaces - page 13

Anatoli Kazharski  
faustf #:

but is free??  do you have some link ?? thanks

Answered in private messages.

easyfxbot #:

Hi Anatoly


Using EAF from market, is there a way to start the window with dark theme instead of light?

Yes, sure. Try like this:

CTheme::SetTheme(THEME_DARK);
Arturo Hugo Ninamango  

Hello, for a Text Box (CTextEdit) with what property is its content aligned to the right?

Could you please put a few lines of example code, thanks
Samuel Gonzalez  

I'm having the following error when I run my panel in backtest:

2023.07.25 09:39:08.223 2023.01.02 04:19:00   CWndContainer::CheckOutOfRange > Предотвращение выхода за пределы массива.

 I' don't know why.

this is the implementation of one of my objects:

   int mainWindow = (int)Symbol();
   if (!CWndCreate::CreateTabs(m_tabs, m_window, mainWindow, 0, 40, PNL_GLOB_WIDTH, PNL_GLOB_HEIGHT - 62, tabsTitles, tabsWidths, TABS_TOP, false, false, 0, 0, P_Panel_FontSize))
      return (false);

and this is the function located in "WndContainer.mqh" that prints the error:

//+------------------------------------------------------------------+
//| Adjusting the window index in case of out of range          |
//+------------------------------------------------------------------+
int CWndContainer::CheckOutOfRange(const int window_index)
  {
   int array_size=::ArraySize(m_wnd);
   if(array_size < 1)
     {
      ::Print(PREVENTING_OUT_OF_RANGE);
      return(WRONG_VALUE);
     }
//--- Adjustment in case of out of range
   int index=(window_index>=array_size)? array_size-1 : window_index;
//--- Return window index
   return(index);
  }
Eric Bel  
How can I get version 2.0 and use it for MT4?
sparkz42  

Hi Anatoli

EAF looks like a great library. Any chance of releasing the extra examples for help with usage?

Thanks

umad  

Old samples are not compatible with the latest  EasyAndFastGUI v2.0. Old samples are using #include <EasyAndFastGUI\Controls\WndEvents.mqh> which theses wnd*.mqh files are different with the latest.

amon_gabriel  

Hey guys,

I'm trying to downlaod the version 2.0, but when I go to the market link the page says "Unfortunately, "EasyAndFastGUI" is unavailable". Is the link changed? 

Thanks,

Amon Gabriel

Anatoli Kazharski  
amon_gabriel #:

Hey guys,

I'm trying to downlaod the version 2.0, but when I go to the market link the page says "Unfortunately, "EasyAndFastGUI" is unavailable". Is the link changed? 

Thanks,

Amon Gabriel

Hello!

Unfortunately, I have temporarily removed the EasyAndFastGUI 2.0 library from sale due to an agreement with the company with which I am currently collaborating.

Maria J.  
A great library, however it lacks the examples from version 2.0
Reason: