MetaTrader Version 5 : Build 4231 - Error 4102 (ERR_CHART_NO_REPLY) on ObjectGetString !

 

Hello,
on MetaTrader Version 5 : Build 4231 - Error 4102 (ERR_CHART_NO_REPLY) on ObjectGetString

I think it's a Bug from MetaTrader Version 5!

look here:

#property copyright "Copyright 2021, MetaQuotes Ltd."
#property link      "https://www.mql5.com"
#property version   "1.00"

int OnInit()
  {
//---
   string testName="Edit";
   ObjectCreate(0,testName,OBJ_EDIT,0,0,0);
   ObjectSetInteger(0,testName,OBJPROP_FONTSIZE,10);
   ObjectSetInteger(0,testName,OBJPROP_XDISTANCE,100+65);
   ObjectSetInteger(0,testName,OBJPROP_YDISTANCE,100+18);
   ObjectSetInteger(0,testName,OBJPROP_XSIZE,60);
   ObjectSetInteger(0,testName,OBJPROP_YSIZE,25);
   ObjectSetInteger(0,testName,OBJPROP_COLOR,clrBlack);
   ObjectSetInteger(0,testName,OBJPROP_BGCOLOR,clrWhite);
   ObjectSetInteger(0,testName,OBJPROP_BACK,false);
   ObjectSetString(0,testName,OBJPROP_TEXT,(string)90);
   ObjectSetInteger(0,testName,OBJPROP_ZORDER,999);

   Print(ObjectGetString(0,"Edit",OBJPROP_TEXT,0));
   Print(GetLastError());
   
   return(INIT_SUCCEEDED);
  }
 

and here is the Expert Tab with the 4102 Error!

Output

 
it fixed in Build 4232!