[C#][VB6] Serial Number - Valid only ONCE!

Status
Not open for further replies.
Re: [/HELP\] [C#][VB6] Serial Number - Valid only ONCE!

Ideas, no.
But suggestions, i'm not sure if it's good idea to validate it by ip address since they can be dynamic, it should me something unique and static like mac address ( if it's not changing )
or something like this.
 
Well I have sort of Code For vB6 But I Dunno if it Works Cuz I Havn't Been On Computer Much. But It'll Have To Do With my Thread About The Auto Updater Thingy. You Can Instead Of Putting Version put like txtserial.txt Then Like Make it Delete That .. ? I Don't Really Know.
 
Yeah go for a MAC address, same as LogMeIn uses, you can trial some of their extended license types (Pro, IT Pro or w/e) and if it expires you can't trial again, they record your MAC address. =P

IP's can change so that isn't the best option, same for MAC addresses but IP's change without people know it (well n00bs don't), to modify your MAC address it's likely that you know what you are doing. ;]

Rolls'
Nillus
 
Ummm....
Once they made a correct registration
You could do
(VB6)
Code:
FSO.CreateTextFile ("C:\Program Files\reg.txt").Write ("Y")
Then In Form_Load()
Code:
Private Sub Form_Load()
If FSO.FileExists ("C:\Program Files\reg.txt") = True Then
Else
frmRegistration.Show
End If

Probs a rubbish code/example but it can be used
 
How about implementing ( inside the validating program ) something like no-ip. What i mean is:
  • customer buy software
  • register it via webby to server with his current ip
  • implemented program stores his current ip,
  • on next validation implemented program sends last ip and current ip
  • servers checks if product is registred for previous ip if yes updates the ip

I'm not sure it it's 100 % safe, but I can't figure out anything else right now.
 
How about implementing ( inside the validating program ) something like no-ip. What i mean is:
  • customer buy software
  • register it via webby to server with his current ip
  • implemented program stores his current ip,
  • on next validation implemented program sends last ip and current ip
  • servers checks if product is registred for previous ip if yes updates the ip
I'm not sure it it's 100 % safe, but I can't figure out anything else right now.
You want a kind of mother server running?
Would still be the safest method imo, a mother server that keeps track of your IP- and MAC-address. =]

- Nillus
 
Why do you edit your first post? Perhaps it could help other people with the same problem, now they have no idea what this topic was about.
 
Status
Not open for further replies.
Back