I am debugging a VB 6.0 program that is using XML methods, etc. How can I see how these XML variables look in my program when I am debugging it?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use watch window (view menu -> watch window or locals window) or immediate window, when you are debugging or hit a breakpoint.
Inside immediate window ( ctrl + g ), type
? myXmlVariableto see the content of the variable namedmyXmlVariable.