Just started using Borland C++ Ver 12.1 CE
Using ‘StepOver F8’ the debugger will not stepover but
will ‘stepinto’ into the Assembly code. Most annoying!
Example: In my program, there is code like this…
Line 101 if( asNAME.Pos( "UNITYADSCACHE" ) != 0 )
Line 102 { bIsGoodFormat = false; }
When the debugger steps onto Line 101, all is good.
Press (F8) and the debugger does not stepover Line 101 onto Line 102,
but steps like (F7) into the ‘ustring.cpp’ code.
What to do ?
Claude