Hi,
We've merged our asp.net with the .net version of turboactivate.
We've got the unique serial license for the setup and the .net app, but we have a problem.
For our tests, we're using the IsGenuine method, but it works only sometimes.
That's our code :
Private Sub frmCargaInicial_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Try
'Serial del producto dado de alta en LimeLM
TurboActivate.VersionGUID = "20036662014f5f3e1f007620.98886139"
TurboActivate.IsGenuine(False)
If TurboActivate.IsActivated() Then
MsgBox("ACTIVATED")
Else
MsgBox("NOT ACTIVATED")
End If
Catch ex As Exception
MsgBox("La aplicación no se ha podido iniciar. Por favor, contacte con el proveedor. ")
End Try
End Sub
In some pcs, it doesn't get into the if sentence, so the application doesn't work. We don't see any of both msgbox, but we don't know why.
What are we doing wrong?