Using PB/DLL 6.0 and "API style" (i.e., not DDT) programming, I am developing a program which is basically a single dialog box (currently modal). In the dialog box procedure I am frequently resetting dialog items using SendMessage to the dialog box itself (e.g., BM_SETCHECK).
I have been generating "stack fault" illegal operations and was trying to figure out where the problem is, and I "think" the problem is in re-entrancy: there are a number of places where I re-use the same LOCAL dataname to aid in processing a message.
In general, is a good place to look for the source of "stack fault" errors in "re-entrancy" problems? That is, am I looking in the right place, or should I be looking elsewhere?
Thanks,
MCM
I have been generating "stack fault" illegal operations and was trying to figure out where the problem is, and I "think" the problem is in re-entrancy: there are a number of places where I re-use the same LOCAL dataname to aid in processing a message.
In general, is a good place to look for the source of "stack fault" errors in "re-entrancy" problems? That is, am I looking in the right place, or should I be looking elsewhere?
Thanks,
MCM
Comment