Can we in any way write and read into the disassembly code(Changing value of variable directly through disassembly code) while debugging in VC 6.0
I posted in this wrong forum before..so posting it again
Printable View
Can we in any way write and read into the disassembly code(Changing value of variable directly through disassembly code) while debugging in VC 6.0
I posted in this wrong forum before..so posting it again
I am not sure if I understand your question well, but using VC 6.0 you can change value of any register and / or memory location using 'Watch' window.
Hob
hi can you tell me how can we read a exe file in visual studio 6.0.....plzz will b thankful to u..by
Here's how to load an executable in VC6 IDE. Click Open or Open Workspace -> select "Executable Files in the "Files of type" filter -> then select the Exucutable file (.exe). After that, press F10. That would bring you to the debug session and shows you the assembly code. You are thus required to have understanding in Assembly code to interpret it.Quote:
Originally Posted by Nazish Mirza