Converting bmp file problem?

 

Hi, why in the following code is only one bmp image showing?

void OnStart()
{
   string objName1="img1",objName2="img2";
   string imgFile1="\\Images\\dollar.bmp";
   string imgFile2="\\Images\\arrows.bmp"; 

   ObjectCreate(0,objName1,OBJ_BITMAP_LABEL,0,0,0);
   ObjectSetString(0,objName1,OBJPROP_BMPFILE,0,imgFile1);
   ObjectSetInteger(0,objName1,OBJPROP_XDISTANCE,200);
   ObjectSetInteger(0,objName1,OBJPROP_YDISTANCE,200);
   
   ObjectCreate(0,objName2,OBJ_BITMAP_LABEL,0,0,0);
   ObjectSetString(0,objName2,OBJPROP_BMPFILE,0,imgFile2);
   ObjectSetInteger(0,objName2,OBJPROP_XDISTANCE,100);
   ObjectSetInteger(0,objName2,OBJPROP_YDISTANCE,200);
}

I have 1 bmp as shown dollar.bmp which came with mql4 and the other called arrows.bmp that i have converted from a png file using https://cloudconvert.com/ but i cant get the converted image to show?

What is going on?

Reason: