|
|||
|
Hi - I'm a little bit puzzed about how to make a registration system.
I can use the default system as that works really well. However, I'm keen to change it slightly, and ideally use the registration data to display "Registered to xxx" on the front of my application. Is that possible? I realise I can check if it is registered using Application.Expiry.isRegistered - but is it possible to get the username the application can be registered with? ![]() Thanks. :P
__________________
:) |
|
|||
|
"user name" and "serial number" are saved in registry, you get them using the "readProfile" method
Code:
var username = readProfile("Registration", "User Name");
var serialnumber = readProfile("Registration", "Serial number");
|
|
|||
|
Just coming back to this....
I can get my application to display the User Name - works ideally. However, I cannot get the same code to work for the Serial Number. This produces an error. I'm using the code as suggested above - Code:
var username = readProfile("Registration", "User Name");
var serialnumber = readProfile("Registration", "Serial number");
__________________
:) |
![]() |
Was this information helpful? Yes No
| Thread Tools | |
| Display Modes | |
|
|