[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
CppBuilderEventLog
In C++ Builder you can write to the Event Log using the code below.
You can combine this with the preprocessor statements used by assert like:
You can view the Event Log under 'View | Debug Windows | Event Log' or the key shortcut CTRL-ALT-V.
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
CppBuilderEventLog
Event Log
A window your debugger that enables you to write debug messages to.In C++ Builder you can write to the Event Log using the code below.
OutputDebugString("Now starting dangerous function");
You can combine this with the preprocessor statements used by assert like:
ifndef NDEBUG
OutputDebugString("Now starting dangerous function");
- endif
You can view the Event Log under 'View | Debug Windows | Event Log' or the key shortcut CTRL-ALT-V.
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
