View Single Post
  #3 (permalink)  
Old 07-12-2007, 08:58 PM
Michel Michel is offline
Senior Member
 
Join Date: Feb 2006
Posts: 519
Michel is on a distinguished road
Quote:
Originally Posted by iscuba11 View Post
PHP Code:
void watermark()
  {
   
ObjectCreate("fxfisherman"OBJ_LABEL000);
   
ObjectSetText("fxfisherman""fxfisherman.com"11"Lucida Handwriting"RoyalBlue);
   
ObjectSet("fxfisherman"OBJPROP_CORNER2);
   
ObjectSet("fxfisherman"OBJPROP_XDISTANCE5);
   
ObjectSet("fxfisherman"OBJPROP_YDISTANCE10);
   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
Reply With Quote