Debugging problem
1)In my application im uploading a file to a server...after 39MB display on the progress bar get reseted to 0%...so i need a debug log window so that i can trace the point where it is reseting... can any one help me to get a debugger(any sample freeware) so that i can trace the variable value where it is reseting...
[317 byte] By [
codepanter] at [2007-11-20 1:34:20]

# 2 Re: Debugging problem
Im using Visual studio 6.0version...during debugging im able to trace the variable value...but to debug upto 39MB ..it's impossible...i want a debugger so that i can check the variable values,when my application is running..
# 3 Re: Debugging problem
Hey go to this link and check whether its ok for you ?
http://www.sysinternals.com/Utilities/DebugView.html
RinuRaj
# 4 Re: Debugging problem
Im using Visual studio 6.0version...during debugging im able to trace the variable value...but to debug upto 39MB ..it's impossible...i want a debugger so that i can check the variable values,when my application is running..
Why? :confused: anyway you don't have to step through every line to find the error. You can instruct the debuger to break when a specified condition if fulfilled. In your case this condition would be "39mb uploaded or progress bar is reset to 0". Ofc you'll need to write this condition in C++ . :)