PDA

View Full Version : How to write shareware programs?


anilkumarby
02-07-2002, 08:03 AM
Hi people,

I had written a tool for which I need to make it a trialware
or a shareware. It should work for 90 hours and later has to prompt
for registration. How to do this ?
Which language should I use : VC++/VBasic/Delphi etc ?

Thanks and regards
Anil

linstead
02-08-2002, 04:08 PM
Have an explore of this site for programming help. http://www.tek-tips.com/threadhome.cfm?CFID=42935533&CFTOKEN=80267620

------------------
mike

Ghost_Hacker
02-08-2002, 04:44 PM
The time lock should be built-in to whatever program your making. So if the shareware is a C++ program so too will be it's time lock. It doesn't really matter what language you use to create the program. Anyone who wishs to crack it will read the program's "machine code" to first understand how it works and then to patch it. So it's not a matter of security just a matter of what code you feel the program runs best in.


EDIT Go here for some timelock products. Most coding examples are written in C++ but can be found with a little searching.
http://www.codeproject.com/cpp/softprot.asp

http://www.turbopower.com/products/onguard/
http://www.aztechsoft.com/timelock.htm
http://www.previewsystems.com/support/vbox_resources.html

http://www.linkdata.com/newhome/theory.htm



[This message has been edited by Ghost_Hacker (edited 02-08-2002).]