hi,
If found the DbaseLicenseKey = LicenseKey match i want to write the value to registry but the problem is....i have no idea how to code at this part
AxActiveLockBP.LicenseKey as it gives the error message....
error message = 'LicenseKey' is not a member of 'Axactivelock1884.AxActiveLock'.
Please help!!!
If LicenseKey <> DbaseLicenseKey Then
MsgBox("Invalid Kiosk Activation Key." & vbCrLf & "Please contact Administrator for Activation Key. Thank you.")
'if LicenseKey match then write the value to registry
ElseIf DbaseLicenseKey = LicenseKey Then
AxActiveLockBP.Register(LicenseKey)
Application.DoEvents()
newkey = key.CreateSubKey("BPKey").CreateSubKey("BPName").CreateSubKey("Path")
newkey.SetValue("LiberationKey", AxActiveLockBP.LicenseKey)
End If