Questions tagged [trial]

216 questions
2
votes
2 answers

Implementing a Trial

I have made an application in which I want that the application should expire after say 180 Days but the problem is that if I take the system date, anyone could just change it and get going and I cannot also take the internet date because many times…
Daksh Shah
  • 2,997
  • 6
  • 37
  • 71
2
votes
1 answer

How to create the 30 days trial setup with wix?

I am trying to create the installer for my product.It must be work for 30 days after installation.After 30 days it must expire and make the application not to work.Please tell me how can i do this in wix ?
123r789
  • 1,600
  • 3
  • 22
  • 33
2
votes
1 answer

Best place to store the trial data for the web application

After reading a lot of SO topics about how to design a trial for the desktop software I still have some questions about trial for Web Application. I have a ASP.Net MVC Web Application and I'm offering a time limited trial for that. The applicaion…
VladL
  • 12,769
  • 10
  • 63
  • 83
2
votes
1 answer

How do I get the Paypal Express Checkout to display the trial amount, not the regular amount when creating recurring payment profiles?

How do I get the Paypal Express Checkout to display the trial amount, not the regular amount when creating recurring payment profiles? We have implemnted a coupon system, allowing the user to claim, say a discount of 10% for 3 months. All works…
Y.K.
  • 290
  • 2
  • 9
2
votes
3 answers

Free, trial app on Google Play, full version on my own website

As a Hungarian software developer, up to this day it is not possible to sell apps on Google Play, because Hungary is not on the merchant list, therefore only free apps are allowed to upload from Hungary. Is it possible and legal to upload the free…
user2567968
2
votes
0 answers

Error retrieving information from server [DF-DFERH-01]

I'm implementing an app with in app billing(subscription)with my own product ids and the purchase works fine till I change the trail duration on the Google Develper Console from 0 to 7(or more).I'm testing on a device. I'm getting the Error: Error…
user2240187
  • 31
  • 1
  • 4
2
votes
1 answer

How to make a demo game in Unity3d?

I have developed a game in unity3d for pc and mac. I want to publish the game with 30 days trial period. How do I make it? How do I write into the system registry. What things that I should keep in mind while developing this trial version. Whenever…
dulton
  • 190
  • 2
  • 14
2
votes
2 answers

Unlocking trial application by in-app billing

I'm going to publish one commercial application on Google.Play. I have idea to create only one version. It's free to use during 2 weeks after installation (trial period). After expiring of trial period user will have dialog with suggestion to buy…
nickkadrov
  • 488
  • 2
  • 12
2
votes
1 answer

How to simulate Trial mode on Windows Phone 8 app?

I've been developing and testing WP apps for more than year, including paid apps with trial versions, Silverlight and XNA too. When using Guide.SimulateTrialMode and Guide.IsTrial in WP7 SDK, it was perfectly working in emulator and on real device…
Martin Suchan
  • 10,600
  • 3
  • 36
  • 66
2
votes
2 answers

Create a trial version of a Java application, with limited functionality

I am searching for ideas on how I can implement a trial version of my java application. Most posts are about creating a trial software with time limitation on when it stops working. In my case I am want to create an application that has limited…
Poorav
  • 415
  • 1
  • 5
  • 14
2
votes
2 answers

put a time limit on the program

Kindly advise on below requirement We need to include a trial period or a time limit to a program. We have only the exe file. We do not have the source files. Is there any tool available to include a trial period (like limiting 30 days) to this exe…
SODC
  • 131
  • 2
  • 12
2
votes
2 answers

Time limits for trial version of application

I am looking to make a trial version of an app I made. Basically I want to put a time limit on how long the app will function before a window comes up that states that the user must buy the paid version of the app. Thanks for any tips ahead of time!
CodeMonkeyAlx
  • 813
  • 4
  • 16
  • 32
2
votes
2 answers

3 Months Windows Azure Trial Disabled in 3 Weeks

My 3 months trial account Windows Azure has already been disabled in 3 weeks. How's that possible? I had nothing on my project, just a simple Asp.Net web page. I don't think anybody knew my page and made constant requests. I can't find a statistics…
Bogac
  • 3,596
  • 6
  • 35
  • 58
1
vote
1 answer

"Next trial" button in MATLAB

I have a script this MATLAB script: function semjudge clc; name = input('Name: ','s'); snum = input('Subject #: ','s'); files = dir(fullfile('pictures','*.png')); index = randperm(length(files)); picture1 = files(index(1)).name; picture2 =…
Ryan Simmons
  • 873
  • 3
  • 17
  • 29
1
vote
1 answer

module name overloading and import path

The code below fails because twisted.trial.unittest.TestCase, the desired baseclass, is not the baseclass. from twisted.trial import unittest from unittest import TestCase import myapp class Feature(TestCase): def setUp(self): …
msudder
  • 505
  • 3
  • 14