About Compiling properties

 

Someone knows how to access to the value of a compiling property?

if we Define this property in the head of our ea...

#property link " http://www.yotrader.com/ "

How may I access to this value set in "property link"?

because this not works...

Print(#property link)

Print(#link)

Is there any system to get this value ?

Thanks.

Yo, Trader

 
yotrader:

Someone knows how to access to the value of a compiling property?

if we Define this property in the head of our ea...

#property link " http://www.yotrader.com/ "

How may I access to this value set in "property link"?

because this not works...

Print(#property link)

Print(#link)

Is there any system to get this value ?

I don't think there is a way . . . I'd be happy to be corrected though.
 

I have never heard of a way either, does anyone even know what is the purpose of #property link ?

 

Link and Copywrite simply place the plain text into the binary (ex4,) nothing more, thus chainging an anonymous binary into someones property.

There's no need to get the value, just define it in the code

#property copyright "Copyright © 2013, WHRoeder@yahoo_com"
#define   COPYRIGHT "Copyright © 2013, WHRoeder@yahoo_com"
:
Comment(COPYRIGHT);
 

Or

#define   COPYRIGHT "Copyright © 2013, WHRoeder@yahoo_com"
#property copyright COPYRIGHT

...

Comment(COPYRIGHT);
 
I thought of that after the fact, and hadn't gotten back yet to change it. :)
 
angevoyageur:

Or

Is a good solution, Thank you very much at all

 

Yes that is a good solution although I think strictly speaking you shouldn't assign copyright ownership to an email address.

Reason: