Thanks for your help, although it wasn't the answer I was hoping for, it does make sense. Thanks Again.
Main Topics
Browse All TopicsI have a generic error handling routine that writes my errors to a log file and to the database. This is all working fine, but to debug a problem I usually need to know what values the variables contain so I can reproduce the issue. So in the error section of a piece of code, I inevitably end up building a string that contains all of my local variables and their values, then I pass this into the error handling routine for logging. What I would love is another generic routine that can iterate through all of the variables in memory and build a string out of the variables and their values. Then my error handling would be truly generic because it would be identical from module to module. Any help is appreciated, I'm stumped on this one.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: Arthur_WoodPosted on 2002-11-01 at 16:18:33ID: 7398763
can't be doen, because when your program runs, the internal compiler has changed all of the variable NAMES into Addresses, and there is No direct way, in your code, to get the correspondence bewteen the addresses which now hold the values, and the NAMES which those addresses were associatred with in your source code.
While that information is available to an on-lime DEBUGGER, if the Memory Map information has been written to en external file, it is generally NOT available, in a clean manner, while the program is executing.