How To Make Fool Proof Trial Version
Aug 29, 2010
I have made an application in vb.net of which I want to make a trial version. It should stop working after a week. Is the ClickOnce manifests used for that? Any best approach for this. Preferably a process that does NOT use system date.
View 5 Replies
ADVERTISEMENT
Mar 27, 2010
do a project in vb.net.and i want to do demo(TRÄ°AL VERSION).
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load Dim free As Integer = Microsoft.Win32.Registry.CurrentUser.CreateSubKey("demo").GetValue("time", 5) Label1.Text = free& " stay days " hak -= 1 If hak < 0 Then MsgBox("THE END please buy this programm") Me.Close() Else Microsoft.Win32.Registry.CurrentUser.CreateSubKey("demo").SetValue("time", free) End If End Sub
this codes are not daily. i don't want this codes.
View 2 Replies
Jun 22, 2010
I need to know how can I make trial(demo) version of my program. Normally people use date & time to do it. But if user will change his system date I guess it will not work. I need to know the best way of making trial version which will work only 7 or 15 or 30 days. Is it possible to make something like that it(program) will kill all files after passing 30 days
View 3 Replies
Jul 27, 2009
How to make a trial versin software in vb.net 2005 for expiration of software after a certain days?
View 1 Replies
Feb 14, 2011
am using visual studio 2005 professional edition (vb.net) at front end of my project, my project is completed, i have created the simple setup file, but i want to create its trail version too, i mean a full fledge setup, so how do i made it in vb.net?
View 16 Replies
Jun 25, 2012
I am making trial version of my vb .net project but it is not counting the days , date and time . Can u plz give me any suggestions to make it correct. [code]...
View 1 Replies
Jan 16, 2010
I want to do trial version of software in vb.net. can you tell how to do it
View 1 Replies
Jun 26, 2011
I have searched lots of way to make a 30 day trial limit of my program. They say "Use -Settings- in visual basic application for your variables" to save the information about user (like : registered or not registered or when the program expire). (You can see the 'Settings' when you double-click on "my project" in "solution explorer") Does the data which we use with "settings" saved in our program or somewhere in the computer?
View 5 Replies
Jul 28, 2010
i want my software have trial like 30 days or 60 day ... ?
View 6 Replies
Sep 25, 2010
I created an application in vb.net using visual studio 2010. I want to create an installation file of the application that will not be free with a license so I want to create a trial of 30 jours.
View 2 Replies
Oct 23, 2011
i develop a project in visual basic 2010 can there is any way to limit this project for trial version
View 2 Replies
Mar 29, 2010
Where can I download Visual Basic .net trial version? And is it actually called "Visual Basic .net" or is it "Visual studio 2008" -- ?
View 1 Replies
Oct 18, 2011
How offer a trial version of a application on visual basic ? I looking for something the user can't not uninstall and reinstall the trial and start again the trial period, so when the trial period finish the can not use the application anymore.
View 2 Replies
Dec 12, 2007
I have created a windows application in VB.Net 2005 using MS Access as backend.Now before delivering its setup to client I have to create its trial version of 30 days and 60 days.How to do this ?Also my setup should be installed only on one computer.I mean my setup copy should be used for one time only.I know how to deploy the project i.e. I can create a simple setup of my project.
View 12 Replies
Jan 19, 2011
I have just completed a custom banking & accounting software application for a stingy client who doesnt wants to pay-up! How do i make the application a trail version that will expire in say 30 days, and also ensure that whenever it is installed, it checks for first installation and indicate remaining trial days.
View 2 Replies
Feb 23, 2009
My program is almost done now and I'm about a week from releasing it, but I want to make sure no one cracks it!
I guess I need some way of adding serials or something and also making sure two serials aren't being used on different ip's.To use my program you have to be connected to the internet, if not it won't do you any good anyway, so it's no problem if it closes if it can't get a connection from a website or anything
View 16 Replies
May 26, 2008
I finally figure out where I could get the imagelibrary.I downloaded the 90 trial version of Visual Studio 2005 Professional Edition: [URL] opened the .img file with winRAR, did a search of the img file for *imagelibrary*.I was able to extract the imageLibrary from this without installing the trial version.Not sure where it was supose to extract to so I put it in:C:Program FilesMicrosoft Visual Studio 9.0Common7VS2005ImageLibraryI can find this folder in the form design and so far, it's working with my version of C# Express.
View 5 Replies
Jun 10, 2010
Is there any way to make my programs use a lower version of net.framework other than the newest version 4 that comes with VS2010?I use my programs within a closed network and there isn't an easy way for me to install any software since I'm not the administrator.
View 3 Replies
Oct 23, 2011
how can i make a trial period application in visual basic 2010
View 3 Replies
Feb 26, 2010
I want to make a trial or demo for my program , how i can do that ??
View 1 Replies
Jul 1, 2008
I am a student developer & working on a project. I am using visual studio 2005 professional. My preferred language is visual basic. I want to know how to make the trial software which expires after some use unless right key is entered and also the procedure for making the registration key enabled software.
View 2 Replies
Jul 3, 2011
I have a small scripting engine written which can run basic code. I want that if the user protects the code, then it no one should be able to open the code except my program. Now I found a link : [URL] which encrypts the code using base 64 encoding. It uses a key to encrypt and decrypt.
[Code]...
View 1 Replies
Jan 28, 2011
I was wondering if or how I could error proof a combobox.example: "If combobox1.text = (something that i dont have added into the combobox for the user already) then msgbox "Error: Use the items already in there" "but i didnt want to go through everything lieif combobox1.text = 1 then errorif it = 2 then error, if it = A then error.
View 2 Replies
Mar 31, 2009
How they relate and differ from each? What are the best practices for version control? Is there a primer about publish online? Or a good book?
And is it possible to make ClickOnce and a msi in one solution of VS 2008? If so, is there any conflict or pitfall?
BTW I am using VB if that makes any difference.
View 1 Replies
May 17, 2012
Administrator Console I am Making a Noob-Proof GUI Administration Control Panel,and I Have,Log Off User Shutdown (With User Selected Amount Of Time)Quick Shutdown (Shell ("shutdown -s -t 00") )Reboot Computer and I Need the following:
-Disable TaskManager
-Disable Command Prompt
-Disable internet
-Disable My Computer
-Disable Regedit
View 2 Replies
Nov 2, 2009
How do I make the Internet browser in vb.net a 32 bit version? I tried to install Adobe Flash on it, but it won't let me install it, saying it doesn't work on 64 bit internet browsers.
View 3 Replies
Nov 19, 2011
Can I make applications in the Free version of VB Express and use them on other machines?
View 9 Replies
Mar 11, 2010
I'm trying to make a light version of a Blackjack game. The rules I need to use are as follows:
Ace = 1
Normal Cards = 2-10
Color Cards (king, queen, etc,) = 11
The dealer can keep hitting until it reaches 17 or under 21, he must always stay once it hits 17 or over (without busting obviously).
I know the ace normally should be 1 or 11 normally but I don't want to complicate things, I want to get the main thing of the program working first.
Public Class frmMain
'declaration to help generate number
Dim RandomClass As New Random()
[code]....
View 10 Replies
Apr 8, 2009
I`m making a program.I`d like to know how to make a code which will navigate to my website and find if there's a newer version of my launcher..I`ll search some codes now, If I find some interesting codes i`ll post here so u can upgrade or tell me how to correctly use them for my auto-update.I cannot publish my Launcher unless I`ve an Auto-Update in my Launcher.
View 1 Replies
Oct 21, 2008
This code no longer works in ver 2007:' Obtain max resources available for Excel
[Code]...
View 3 Replies