View Single Post
  #2 (permalink)  
Old 03-03-2006, 10:08 PM
Mohammed's Avatar
Mohammed Mohammed is offline
Senior Member
 
Join Date: Mar 2006
Posts: 119
Mohammed is on a distinguished road
Lightbulb

Quote:
Originally Posted by shwetha
hi guys


whats the code to have a password protection to EA


and is it possible to have our EA working in interbank fx server


any help reg this is appreciated

bye
shwetha
Hi shwetha,

very easy friend!

PHP Code:
extern string password "000000";
....
int start()
{
if (
password != 123456//change the 123456 to the password you will give to the user!
{
Alert ("Wrong password! Do you want to cheat my system which I spent my life developing!");
return (
0);  
....

Then compile the EA and ENJOY

Last edited by Mohammed; 03-03-2006 at 10:10 PM.
Reply With Quote