i have a funny "Problem" when using BEGIN SEQUENCE
i have put this on "top" of Method
Code: Select all | Expand
#ifdef Use_SEQUENCE
bSaveError := ERRORBLOCK()
ERRORBLOCK( { | e | BREAK( e ) } )
BEGIN SEQUENCE
#endif
Code: Select all | Expand
#ifdef Use_SEQUENCE
RECOVER
ERRORBLOCK( bSaveError )
::lAllowed := .T.
END SEQUENCE
ERRORBLOCK( bSaveError )
#endif
RETURN nil
![Shocked :shock:](./images/smilies/icon_eek.gif)
when disable those Parts it work again ... hm
---
i do have use hb_threadStart(), which also use SEQUENCE, before i got to display Data in Main Thread
can this make a Problem like above
![Question :?:](./images/smilies/icon_question.gif)