This function returns support status of the license code. When support period is expired, further protected versions of software will not work, but there is possibility to use previous versions of software which were created (protected) during support period.
Syntax
Public Shared Function IsSupportExpired() As Boolean
Parameters
No parameters.
Return value
Returns true if support status is expired.
Returns false otherwise.
Requirements
File: ItpLibraryNetWrapper.vb
Namespace: ItpLibraryNetClient;
Example
Private
Sub
InitItpControls()
lIsSupportExpired.Text =
If
(ItpLibraryNetWrapper.IsSupportExpired(),
"yes"
,
"no"
)
End
Sub