This function returns protection status of software (protected or not protected). You can use this function during development process.
Syntax
Public Shared Function IsSoftwareProtected() As Boolean
Parameters
No parameters.
Return value
Returns true if software is protected.
Returns false otherwise.
Requirements
File: ItpLibraryNetWrapper.vb
Namespace: ItpLibraryNetClient;
Example
Private
Sub
InitItpControls()
lIsProtected.Text =
If
(ItpLibraryNetWrapper.IsSoftwareProtected(),
"yes"
,
"no"
)
End
Sub