Just a comment:
see below-
Quote:
>Mark,
>>I have created many programs in VB, that many people have downloaded from
>>the internet. I am now starting to worry about piracy.
>>Is there any easy (and cheap) way that a home-grown VB programmer like me
>>can copyright my software?
>Legally, all you need to do is display a prominent copyright notice in your
>program (in a form along the lines of
>"Copyright ? 1998 MyName. All Rights Reserved.").
This Copyright STRING should be coded in some way....
You might create a simple coding/ decoding way to do it,
OR:
Sub Form_Load()
Dim Copyright as string
Copyright ="Copyright"
some code..
Copyright =Copyright & " ? "
some code..
some code..
Copyright =Copyright & str$(1998) &
some code..
Copyright =Copyright & "Yo"
some code..
some code..
Copyright =Copyright & "ur"
some code..
some code..
Copyright =Copyright & "N"
some code..
Copyright =Copyright & "am"
Copyright =Copyright & "e"
some code..
some code..
some code..
Label1.Caption=Copyright
This is a simple way, but it is not so easy to tamper with, because it is
"hidden" in the compiled code.
The copyright string is not prosessed before the Form_Load(), and is by this
reason not
a whole string in code.
I have done it this way some time ago..... ;-)
Regards, Asbjoern.
Quote:
>You can also copyright your software through the government for added
>evidence in any potential court cases. However, most people don't do this.
>For starters, it requires that you publish a fair amount of your program's
>source code. In addition, it really doesn't give you much.
>In the end, even if you have the resources of Microsoft, that won't stop
>piracy. Microsoft's estimates of sales lost to piracy are staggering.
>--
>Jonathan Wood
>SoftCircuits Programming
>http://www.softcircuits.com