求VC6上内存调试工具方法 郁闷ing

求VC6下内存调试工具方法 郁闷ing
只要执行strcpy就挂掉,受不了了,求VC6内存调试工具方法,谢谢

------解决方案--------------------
工具本身千锤百炼,是你代码的问题,贴出来看看。
------解决方案--------------------
程序崩溃,一般我都看 调用堆栈。
------解决方案--------------------
To set a breakpoint when a variable changes value 

From the Edit menu, click Breakpoints.
Click the Data tab of the Breakpoints dialog box.
In the Expression text box, type the name of the variable.
Click OK to set the breakpoint. 
--------------
崩溃的时候在弹出的对话框按相应按钮进入调试,按Alt+7键查看Call Stack里面从上到下列出的对应从里层到外层的函数调用历史。双击某一行可将光标定位到此次调用的源代码或汇编指令处。