I was debugging a webmobile app. and I acidentaly created a breakpoint in an object declaration line.

Code:
        Object oSearch is a cWsWebMenuItem                <<<--- Breakpoint here. 
            Set psCSSClass to "WebPromptMenuItem"
            Set psCaption to "DF_C_$Search"

            Procedure OnClick
                Send Search of oList
            End_Procedure

        End_Object
If from that stop point, I keep using F10 (step Over),, when the execution passes the "End_Object" line, I get the error:

Code:
D:\Projetos\DataFlex\Igreja\Recovery Media Repository\RecoveryMediaRepository_ws\Programs\WebApp.exe
Invalid view object passed with WebRegisterPath.
Erro número: 4402 linha: 17373.

MSG_REGISTERNAVIGATEFORWARDPATH (5819) - oSelectCountry (126) - at address 17373
MSG_WRNP31965 (7114) - oDetailButton (138) - at address 31969
MSG_PROCESSNAVPATHS (5817) - oSelectCountry (126) - at address 17345
MSG_PROCESSALLNAVPATHS (5818) - oWebApp (23) - at address 17360
MSG_END_CONSTRUCT_OBJECT (459) - oWebApp (23) - at address 23862
MSG_END_CONSTRUCT_OBJECT (459) - oWebApp (23) - at address 29436
[start] - at address 32031

If I just remove the breakpoint.. everything is fine.
If I press F5 instead of F10, also everything is fine, no error.

Regards