Click here to Skip to main content
15,891,136 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i am Application Developer.now i want to create trial version of application.so tell me please how can i create trial version of desktop application.
Posted
Comments
Volynsky Alex 26-Dec-12 5:18am    
See also:
http://www.codeproject.com/Articles/15496/Application-Trial-Maker

If customers can use your app for free during a trial period, you can design your app to exclude or limit some features during the trial period. You can also enable features, such as banners or watermarks, that are shown only during the trial, before a customer buys your app. Let's look at how to add this to your app:
http://msdn.microsoft.com/en-us/library/windows/apps/hh694065.aspx[^]
 
Share this answer
 
For creating setup of your windows application you need to add new project from solution.
The detailed pictorial representation shown in this Link[^].

I am assuming you want to install some prerequisites(Third party software like .net framework, Crystal reports, Sql server etc.) before your actual application's installation you can follow below steps.

1) Go to Solution Explorer.
2) Right click on setup project.
3) Click on Properties.
4) Click on Prerequisites button.
5) Select your packages.
6) Below to that, Select second option radio button i.e. Download prerequisites from the same location as my application.
7) Build the application.

Now your build with your required prerequisites in it.

For Trial Period: You can store the installation date in the registry when your applications gets installed & checks every time when your application starts whether it completes the 365 days or not but it has some pitfalls. For more detail you can follow below links.

Application Trial Maker.[^]
MSDN Trail period question.[^]
Trial Version security problem[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900