trialware

Implementing a free trial period with PayPal

泄露秘密 提交于 2019-12-01 05:47:51
I am trying to implement a recurring subscription service on a website using PayPal however I would like to offer a free trial period before the user is billed and the subscription is started. Is this possible using PayPal's API? I have very little experience using the PayPal API and cannot seem to find any useful documentation about implementing a free trial period, so any help would be much appreciated. Thanks. Yes, you can do this. Recurring Payments - Documentation on PayPal website Trial period: An optional subscription period before theregular payment period begins. A trial period may

Implementing a free trial period with PayPal

别说谁变了你拦得住时间么 提交于 2019-12-01 02:17:58
问题 I am trying to implement a recurring subscription service on a website using PayPal however I would like to offer a free trial period before the user is billed and the subscription is started. Is this possible using PayPal's API? I have very little experience using the PayPal API and cannot seem to find any useful documentation about implementing a free trial period, so any help would be much appreciated. Thanks. 回答1: Yes, you can do this. Recurring Payments - Documentation on PayPal website

Need Advice on Implementing a Time-limited Trial

南笙酒味 提交于 2019-11-28 06:24:42
I'm developing a shareware desktop application. I'm to the point where I need to implement the trial-use/activation code. How do you approach something like this? I have my own ideas, but I want to see what the stackoverflow community thinks. I'm developing with C++/Qt. The intended platform is Windows/Mac/Linux. Thanks for your advice! What to protect against and what not to protect against: Keep in mind that people will always find a way to get around your trial period. So you want to make it annoying for the person to have to get around your trial period, but it doesn't matter if it's

Need Advice on Implementing a Time-limited Trial

↘锁芯ラ 提交于 2019-11-27 01:20:48
问题 I'm developing a shareware desktop application. I'm to the point where I need to implement the trial-use/activation code. How do you approach something like this? I have my own ideas, but I want to see what the stackoverflow community thinks. I'm developing with C++/Qt. The intended platform is Windows/Mac/Linux. Thanks for your advice! 回答1: What to protect against and what not to protect against: Keep in mind that people will always find a way to get around your trial period. So you want to

How can I make my product as a trial version for 30 days?

末鹿安然 提交于 2019-11-26 16:19:43
I have created my product and also generated license key for that but I want to ask that key after 30 days. I have do it with registry value storing the date with adding 30 days in that. But I found that if the user change the system date with 30 days before my logic not work. So is there any solution for the trial version software without checking system date and allow only 30 days of trial? You could have another registry key that you increment after every day's use. That way, even if they change the computer's date, this key would indicate to your program that it's been running for > 30

Creating an Android trial application that expires after a fixed time period

故事扮演 提交于 2019-11-26 11:30:37
I have an application which I want to hit the market as a Paid app. I would like to have other version which would be a "trial" version with a time limit of say, 5 days? How can I go about doing this? Currently most developers accomplish this using one of the following 3 techniques. The first approach is easily circumvented, the first time you run the app save the date/time to a file, database, or shared preferences and every time you run the app after that check to see if the trial period has ended. This is easy to circumvent because uninstalling and reinstalling will allow the user to have

Create an application that will expire after a trial period [duplicate]

▼魔方 西西 提交于 2019-11-26 09:52:37
问题 This question already has an answer here : How to make a WPF application a 30 day trial version, and make it licensed using product key? (1 answer) Closed 5 years ago . C# 2008 SP1 I am writing an application that I want to give to a select number of customers. What is the best solution to use so that after the trail period (1 month) the application will no longer work. I was thinking that if they are interested in purchasing the software I will give them a license key or something, to unlock

How to create a trial version of a Java program [closed]

怎甘沉沦 提交于 2019-11-26 09:09:39
问题 I\'m coding a software on java and i almost finished, i would like to know how can we create a trial version which work for example for 30 days, because i will to send it to some companies so how to make it like shareware or trialware, also can we block access to the .class in the jar file? Thank you 回答1: There's a product called Rampart that lets you make a trial version for your Java app. It only takes a couple of minutes and it works pretty well. You can find it at http://Rampartlicensing

How can I make my product as a trial version for 30 days?

南笙酒味 提交于 2019-11-26 06:02:11
问题 I have created my product and also generated license key for that but I want to ask that key after 30 days. I have do it with registry value storing the date with adding 30 days in that. But I found that if the user change the system date with 30 days before my logic not work. So is there any solution for the trial version software without checking system date and allow only 30 days of trial? 回答1: You could have another registry key that you increment after every day's use. That way, even if

Creating an Android trial application that expires after a fixed time period

删除回忆录丶 提交于 2019-11-26 02:26:59
问题 I have an application which I want to hit the market as a Paid app. I would like to have other version which would be a \"trial\" version with a time limit of say, 5 days? How can I go about doing this? 回答1: Currently most developers accomplish this using one of the following 3 techniques. The first approach is easily circumvented, the first time you run the app save the date/time to a file, database, or shared preferences and every time you run the app after that check to see if the trial