i have a funny "Problem" when using BEGIN SEQUENCE
i have put this on "top" of Method
- Code: Select all Expand view
- #ifdef Use_SEQUENCE
bSaveError := ERRORBLOCK()
ERRORBLOCK( { | e | BREAK( e ) } )
BEGIN SEQUENCE
#endif
and before end
- Code: Select all Expand view
- #ifdef Use_SEQUENCE
RECOVER
ERRORBLOCK( bSaveError )
::lAllowed := .T.
END SEQUENCE
ERRORBLOCK( bSaveError )
#endif
RETURN nil
between i have working CODE to display Data but it is EMPTY when using SEQUENCE
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