473,395 Members | 2,467 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Creating 30 day trials for my VB applications

Helo everybody,

HOw can we make an Application to 30 days trail program & HOw to Update the same Application for a client ?

thank you.
Mar 10 '07 #1
4 3034
willakawill
1,646 1GB
Hi. You can download the full version of vb 2005 from microsoft's website to try it out for free. All of the trial downloads are here
Mar 10 '07 #2
Roldan
7
I think what Jayachandra is asking is, how can one make a trial application in vb (30 days for example) and how to update that application once a customer has paid? for the full application rights....

Methinks.

Too bad I don't know how to do that either, otherwise I would help!!!

Roldan
Mar 10 '07 #3
willakawill
1,646 1GB
I think what Jayachandra is asking is, how can one make a trial application in vb (30 days for example) and how to update that application once a customer has paid? for the full application rights....

Methinks.

Too bad I don't know how to do that either, otherwise I would help!!!

Roldan
Oh I see. Good pickup
This is a registry issue. You need to store the date that the app is installed in the registry encrypted. You access that date each time the app is used and disable the app if you pass the 30 day limit. You also need a separate encrypted access code to disable the timer feature.
Mar 10 '07 #4
VBman
2
Here is a simple solution suitable if you are distributing programs in bulk.
Paste this code into a sub-routine that is called on start-up
What the routine does is allow uninterrupted use until 31May07.
After that date and for a month after it will allow use but a polite reminder (in frm.Licence) prompts the user to register.

'This routine checks the validity of a licence
'The first bit is the reminder if used after the date shown

If (DateDiff("d", "31/05/2007", Now) > 0) And (Time > StartTime + TimeSerial(0, 1, 0)) Then
frmLicence.Show
StartTime = Time
End If

'This next bit disables program after the date specified
If (DateDiff("d", "30/06/2007", Now) > 0) Then
frmLicence.Show
SSTab1(0).Enabled = False 'This line can be anything to disable program
End If


Hope this helps you.
Mar 13 '07 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

0
by: Paul Prescod | last post by:
February 1, 2005 Creating OS X Cocoa Applications Using XML and Python, Dethe Elza This talk will cover the use of Renaissance and Python to develop programs for OS X, focussing on both rapid...
14
by: anon | last post by:
Does anyone know how many man-hours were used in creating .NET 1.0? I thought it would be an interesting statistic to know. Thanks.
7
by: Susan Bricker | last post by:
Greetings. As a relative newcomer to Access, I am having trouble deciding on how to design the form flow for updating and creating related records. I'm looking for a variety of suggestions so...
15
by: Carlos Lozano | last post by:
Hi, What is the right way to create an OCX COM component. The component is already registerred, but can't create an instance. I am using the reference to the interop module created. If I use...
2
by: umilmi81 | last post by:
I am having a problem creating an ASP.NET application in Visual Studio.NET 2003, installed on Windows XP Professional I get a message stating that I do not have ASP.NET 1.1 installed, so I can not...
5
by: Alexander Baranovsky | last post by:
Hello, I'm implementing a VB.NET interpreter, it will the second language supported by paxScript scripting engine: www.paxscript.com I need in a collection of simple VB.NET programs which can...
15
by: Steven Macintyre | last post by:
Hi all, I need to retrieve an integer from within a range ... this works ... below is my out puts ... it just does not seem so random ... Is there perhaps a suggestion out there to create a...
1
by: code | last post by:
Hi Grp http://www.books-download.com/?Book=1493-PHP+Hacks+%3a+Tips+%26+Tools+For+Creating+Dynamic+Websites+(Hacks) Description Programmers love its flexibility and speed; designers love its...
2
by: Dennis D. | last post by:
Hello: Creating Windows Forms Applications with VB.net: What are my options for creating properly formatted printable business reports using 2005 Express Edition? Particularly, would like to...
4
by: Mysterydave | last post by:
Hi, Here is my problem: I have a report which lists Application numbers, Offer numbers and Firm Replies numbers for a subject i.e. Geography as 3 rows. My column headings also list subjects so...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.