GetObjectCount Function
Prototype
Public Declare Function GetObjectCount Lib "TclBridge.dll" () As Long
Input
None.
Output
None.
Returns
The number of active objects in the library.
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()
    MsgBox "Object count = " & GetObjectCount(), vbInformation, App.Title
End Sub