This function returns activation status of the protected software.
Syntax
Public Shared Function IsSoftwareActivated() As Boolean
Parameters
No parameters.
Return value
Returns true if software is activated.
Returns false otherwise.
Requirements
File: ItpLibraryNetWrapper.vb
Namespace: ItpLibraryNetClient;
Example
Private
Sub
InitItpControls()
lIsActivated.Text =
If
(ItpLibraryNetWrapper.IsSoftwareActivated(),
"yes"
,
"no"
)
End
Sub