pq05750.txt DEBUGGER OPENS WITH BUTTONS GREYED OUT WHEN A BREAKPOINT IS PLACED IN CALLBACK CODE Putting a breakpoint in callback code to step through it, the debugger pops up with the buttons disabled (greyed out) . Workaround: 1. Set the breakpoint at the beginning of the method that you want to walk through. For example: *modifyVerifyAreaCode: anObject clientData: clientData callData:CallData 2. Test it so the debugger pops up (with the grayed out buttons) 3. Place your cursor before the method name and insert a self halt;. For example: self halt; modifyVerifyAreaCode: anObject clientData: clientData callData: callData. 4.Swipe that entire line and execute it. 5. Select the '(ExHalt) A halt has occurred.'==> from the top of the debugger. 6. Answer NO when a dialog pops up asking you to save the changes. 7. Click INTO on the debugger. You should now be able to walk through your code.