Re: CString oversteps bounds in Release compile
I don't think any of us knows for sure what is going on. We just try to
give you our best guess based on experience and the information we have. I
had a similar problem this week and it turned out to be a problem where I'd
inadvertently called some code in the GUI thread from a worker thread
(something I never want to do). In my case I was always getting a null
pointer on an object and it caused my code to jump into weird places. These
are tough kinds of things to find and perhaps one of the poster children for
managed code...
Tom
"AVee" <motion@abilitysystems.com> wrote in message
news:b4206389-546f-414f-91a1-5c4c1ca244f6@t54g2000hsg.googlegroups.com...
Thanks again, Tom. I am convinced that you are right, that something
is happening before I get to this code - and especially if it's a
rogue pointer, I need to diagnose it exactly and not "move it around".
I have determined, with your help and Joe and Giovanni, that I am
looking in the wrong place, so I am closing this thread, and hopefully
opening another with more specific information. Thanks again.
On Jul 31, 6:37 pm, "Tom Serface" <tom.nos...@camaswood.com> wrote:
I'd guess that something else is happening before you get to this code.
Are
you sure your resources are set up correctly (I.E., do you call
AfxSetResourceHandle() or something like that.