Hi,
If i do breakpoint after one ui.Window.getCurrent() the program hangs.
Exemple code:
FUNCTION test()
DEFINE result SMALLINT
DEFINE mywin ui.Window
DEFINE myform ui.Form
OPEN WINDOW wfdMain WITH FORM "testform"
LET result = -1
BREAKPOINT
LET mywin = ui.Window.getCurrent()
BREAKPOINT
LET myform = mywin.getForm()
BREAKPOINT
LET result = 5
BREAKPOINT
CLOSE WINDOW wfdMain
END FUNCTION
After my first breakpoint the program works fine, and in my data window i can see User, Local, Module and Global variables values.
If i do next breakpoint twice, the program hangs and all the debug menu buttons next,step into, step out, continue are disabled, only the interrupt buton remains activ but it does nothing.
Can someone help on this, please.