How to insert breakpoints?

vijaydidmca2003vijaydidmca2003 Member Posts: 27
Hello to all members.

can anybody say me how to insert breakpoints in the code.

i inserts the breakpoints using F9 in the proper lines.
but once i start debugging, the debugger does not stops
at the breakpoints,where am i wrong.pls guide me how to
inserts breakpoints in the coding so that the debugger
should stop at each breakpoints created by us.

pls tell where am i wrong.

thanks.
](*,)

Comments

  • bbrownbbrown Member Posts: 3,268
    The debugger will only stop at a line that is executed. If the lines, where you put the breakpoints, are not executed the debugger will not stop.
    There are no bugs - only undocumented features.
  • Danny_LarsenDanny_Larsen Member Posts: 1
    You also have to activate the debugger in Tools->Debugger.

    Hope it helps.
  • matteo_montanarimatteo_montanari Member Posts: 189
    Hello to all members.

    can anybody say me how to insert breakpoints in the code.

    i inserts the breakpoints using F9 in the proper lines.
    but once i start debugging, the debugger does not stops
    at the breakpoints,where am i wrong.pls guide me how to
    inserts breakpoints in the coding so that the debugger
    should stop at each breakpoints created by us.

    pls tell where am i wrong.

    thanks.
    ](*,)

    Hi

    Place a breakpoint on a set of lines (before and after your interested point), save the object, active the debugger and ther run your procedure.

    Bye

    Matteo
    Reno Sistemi Navision Developer
Sign In or Register to comment.