IsValidLicenseAvailable Function
Prototype
Public Declare Function IsValidLicenseAvailable Lib "TclBridge.dll" () As Long
Input
None.
Output
None.
Returns
Non-zero if a valid license file for the library was found, zero otherwise.
COM Results
Not applicable.
Side Effects
None.
Description
None.
Notes
The declaration for this function is in the "TclBridgeSupport" (TCLBSUPT.BAS) module.
Example
Private Sub Command1_Click()
    If IsValidLicenseAvailable() Then
        MsgBox "The library is properly licensed.", vbInformation, App.Title
    Else
        MsgBox "The library is not properly licensed.", vbInformation, App.Title
    End If
End Sub