View Single Post
  #2 (permalink)  
Old 07-12-2007, 08:02 PM
HerbertH's Avatar
HerbertH HerbertH is offline
Member
 
Join Date: May 2006
Posts: 88
HerbertH is on a distinguished road
Error

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
<><<<

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.....
Reply With Quote