RuntimeStats

Parameters

None.

Description

Sends a message to the debugger window during program execution. This message shows the current number of active strings and types.

Active strings: number of strings
Active objects: number of types
Unreleased objects: number of types not released

See also: DebugLog.

Example

; RuntimeStats

Type MYTYPE
Field myint
End Type

For count=1 To 3
temp.MYTYPE=New MYTYPE
Next
RuntimeStats

Delete First MYTYPE
mystring$="test"
RuntimeStats

WaitKey()
End

Index

Click here to view the latest version of this page online