| Home | Templates | Classes | Guides |
Both the template and the classes have strong support for using DebugView.
These diagnostics are enabled by default in the global template extension and can also be controlled directly on the QBDebugLogger class.
Toggle logging at runtime without changing template settings by setting properties on the global QBDebugLogger object:
! Enable full DebugView logging and keep the window visible
QBDebugLogger.EnableDebugView = 1
QBDebugLogger.ShowDebugViewInClassCode = 1
QBDebugLogger.DebugViewAlwaysOnTop = 1
You can turn these on for troubleshooting and off during normal use. No template changes are required.
EnableDebugView
Master flag that turns all output to DebugView on or off.
ShowDebugViewInClassCode
Enables very detailed method level logging so you can see exactly what each class is doing.
DebugViewAlwaysOnTop
Brings the DebugView window to the front and keeps it on top for easy monitoring.
| Home | Templates | Classes | Guides |