
07-12-2007, 08:02 PM
|
 |
Member
|
|
Join Date: May 2006
Posts: 88
|
|
|
Error
Quote:
Originally Posted by iscuba11
PHP Code:
void watermark()
{
ObjectCreate("fxfisherman", OBJ_LABEL, 0, 0, 0);
ObjectSetText("fxfisherman", "fxfisherman.com", 11, "Lucida Handwriting", RoyalBlue);
ObjectSet("fxfisherman", OBJPROP_CORNER, 2);
ObjectSet("fxfisherman", OBJPROP_XDISTANCE, 5);
ObjectSet("fxfisherman", OBJPROP_YDISTANCE, 10);
return(0);
}
I used fxfisherman's format and put this coding using the name of my ea instead of fxfisherman at the bottom of my ea.
When I compile the ea program again I get an error: Function "watermark" is not referenced and will be removed from exp-file.
Can you help me with this problem???
Thanks in Advance!!!
Dave
<><<<
|
Somewhere in your own code, you have to call this watermark routine.
Just include:
watermark();
Cheers
__________________
Better being out, wishing to be in than being in and wishing to be out.....
|