How do I do this?????

 

PHP Code:

}


void watermark()
{
ObjectCreate("Forex [1]", OBJ_LABEL, 0, 0, 0);
ObjectSetText("Forex [1]", "Forex [1]", 11, "Lucida Handwriting", RoyalBlue);
ObjectSet("Forex [1]", OBJPROP_CORNER, 2);
ObjectSet("Forex [1]", OBJPROP_XDISTANCE, 5);
ObjectSet("Forex [1]", OBJPROP_YDISTANCE, 10);
return(0);
}

//+------------------------------------------------------------------+

Using this as an example of format, how do I create a wingding of 177 symbol next to Forex (I guess I could create another objectCreate)????

But how do I code the wingding 177 symbol in the programming?? I need someone's advice!!! Please respond!

Dave<<<
 

this is how, use the CharToStr function....

ObjectSetText(sName, CharToStr(159), 10, "WingDings", DodgerBlue);

Mark