|
Previous Top Next |
DebugLevel is used in the ODS method to determine if the passed string should be sent to OutputDebugString. By default DebugLevel is 0, so to send all strings to OutputDebugString you can use the ODS method with:
Example:
ITC ITCoreClass
Code
ITC.ODS('This goes to DebugView',0)
or, since the parameter to ODS defaults to 0, you can simply use:
ITC ITCoreClass
Code
ITC.ODS('This goes to DebugView')