|
-
Sep 23rd, 2006, 08:20 PM
#1
Thread Starter
New Member
VB - A Program Registration Scheme
Hi,im looking for a source of hd serial check,cause im making a program but i dont want everybody use it so im trying to find a ocx or source that let me add it to my program,so when people open the program it ask for the first time if u have valid key then it let u use it and it dont ask u again but if it wrong it will ask for the up to u have a valid key
-
Sep 23rd, 2006, 09:05 PM
#2
PowerPoster
Re: VB - A Program Registration Scheme
 Originally Posted by BaNdO
Hi,im looking for a source of hd serial check,cause im making a program but i dont want everybody use it so im trying to find a ocx or source that let me add it to my program,so when people open the program it ask for the first time if u have valid key then it let u use it and it dont ask u again but if it wrong it will ask for the up to u have a valid key
plenty of examples in the codebank
-
Sep 24th, 2006, 12:50 AM
#3
Thread Starter
New Member
Re: VB - A Program Registration Scheme
 Originally Posted by BrailleSchool
plenty of examples in the codebank
i can't find what im looking cause i know how to get the hd serial but not to make what i posted b4 any example?
-
Sep 24th, 2006, 01:16 AM
#4
Re: VB - A Program Registration Scheme
You know how to retrieve HD serial... but don't know what???
-
Sep 24th, 2006, 01:17 AM
#5
Thread Starter
New Member
Re: VB - A Program Registration Scheme
now cause i have the example of retrieve the serial,im looking on how to add the key to the registry so that form it wont load again just when u dont got the serial it will show up
-
Sep 24th, 2006, 01:25 AM
#6
Re: VB - A Program Registration Scheme
VB Code:
'to save it
SaveSetting "myAppName", "Registration", "RegKey", [B]yourSerialVariable[/B]
'to get it back
[B]yourSerialVariable[/B] = GetSetting("myAppName", "Registration", "RegKey", [B]vbNullChar[/B]) '<- vbNullChar or 0 if you have a numeric value
If yourSerialVariable = correctSerialNumber Then
frmMain.Show
Else
frmRegistration.Show
End If
-
Sep 24th, 2006, 01:27 AM
#7
Thread Starter
New Member
Re: VB - A Program Registration Scheme
than you my brother!!!!!!!!!!!!!!!!!!!!!!
www.vbforums.com #1 best of all ; )
-
Sep 24th, 2006, 01:28 AM
#8
Re: VB - A Program Registration Scheme
 Originally Posted by BaNdO
Take it easy
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|