Quote:
quote:Originally posted by planoie
If you are wanting to publish the source code itself then you aren't going to be able to "lock" it. If a user could read it they could always just copy/paste or re-type it to reproduce it. About the only thing you could do is make it more difficult for them to copy it. For example you could publish it as an image instead of as text. Then they'd be forced to reproduce it visually.
-Peter
peterlanoie.blog
|
nice,
but when you right click of some code in dot.net,
for example, see flowing code:
int a =10;
when you right click on word "int" and select "Go to defenition" you will be forewarded to a page that show some code of Int32 structure..
when you click on that page bye mouse, you will be get a message that shows you a message like this:
"cann't currentyli modify this text on the editor, it is read only "
but you can see some code like :
public const int MaxValue = 2147483647;
public const int MinValue = -2147483648;
public int CompareTo(int value);
and so on.
i want to creat a page like this.
it's not important for me which user can copy my code.
i want, user cann't be able to modify my code
thanx
regards