Book a Demo

Author Topic: No Single Step after "Start Recording Marker"  (Read 2195 times)

Josef Stadelmann

  • EA User
  • **
  • Posts: 59
  • Karma: +0/-0
  • as simple as possible, but not too simple
    • View Profile
No Single Step after "Start Recording Marker"
« on: April 26, 2011, 06:44:21 pm »
I have a bad problem.

I have a break point set at A), a Start Recoring Marker at B) and a End Recording Marker set at C).

It breaks perfect at A) then I can perfectly single step into Spout.clear(), but up on return from Spout.clear() and maybe passing B), I am loosing the single step capability of the EA debugger. Feature or Bug? We'r evaluating!
        
A) Spout.clear()

        '-- xfer
B)        System.Windows.Forms.Cursor.Current = System.Windows.Forms.Cursors.WaitCursor
                 Spout = Fkt.login(Spin, Spout)
C)        System.Windows.Forms.Cursor.Current = Cursors.Default

also I do not see all the levels down to the web service stub in Fkt.login(...) which is 4 more method calls away.

Josef