Hi... How do I get output debug messages generated by the debug mode (ie. Start with debugging)? If I can get them, I wish to display them to listbox that I have in the windows form I created. Is there a smarter way other than using the following? :
lstDebugMessage.Items.Add("Whatever is inside debug message");
Where lstDebugMessage is the listbox I generated in my windows form. Thanks for any ideas!