Libraries: EasyAndFastGUI library for creating graphical interfaces - page 13

 
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);
 

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
 

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);
  }
 
How can I get version 2.0 and use it for MT4?
 

Hi Anatoli

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

Thanks

 

Hi,

How to check the version of this library? I don't know which's version I've used because I've downloaded a long time ago.

But it's have a bug: TextEdit can't update box value.

Fixed it:

ON 

"EasyAndFastGUI\Controls\TextEdit.mqh"

Added:

m_edit.Update(true);
 

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.

 

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

 
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.

 
A great library, however it lacks the examples from version 2.0