This function returns expiration status of the license code.
Syntax
Public Shared Function IsLicenseExpired() As Boolean
Parameters
No parameters.
Return value
Returns true if license is expired.
Returns false otherwise.
Requirements
File: ItpLibraryNetWrapper.vb
Namespace: ItpLibraryNetClient;
Example
Private
Sub
InitItpControls()
lIsLicenseExpired.Text =
If
(ItpLibraryNetWrapper.IsLicenseExpired(),
"yes"
,
"no"
)
End
Sub