Is there an easy way to get the contents of CMap in debug-time to some file
or watch window, or something like that?
TIA, Pashka
POSITION pos = yourMap.GetStartPosition();
while (pos != NULL) {
yourMap.GetNextAssoc( pos, key, value);
TRACE("This is your map value: %s\n", value);
}
Regards,
Tony
In article <ek5CkB$s#GA.133@cppssbbsa03>,
Sent via Deja.com http://www.deja.com/
Share what you know. Learn what you don't.