I want to print debug statements to the Output window(or anywhere else I can see it) in visual studio 2005. The advice I've seen has said to use
OutputDebugString("message");
and to ensure that I have
Options -> Debugging -> Redirect all Output Window text to the Immediate Window checked
while the code builds ok I don't see any output, what's the trick?
