
07-12-2007, 08:58 PM
|
|
Senior Member
|
|
Join Date: Feb 2006
Posts: 519
|
|
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
<><<<
|
You have the function "watermark()" somewhere in your code but this function is never called, so it's no needed to keep it in the compiled file.
It's not a real error, you can run the ex4 as it is...
Last edited by Michel; 07-12-2007 at 09:38 PM.
Reason: I am stupid
|