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