what can make Problem with BEGIN SEQUENCE ?

Post Reply
User avatar
Jimmy
Posts: 1740
Joined: Thu Sep 05, 2019 5:32 am
Location: Hamburg, Germany
Has thanked: 2 times

what can make Problem with BEGIN SEQUENCE ?

Post by Jimmy »

hi,

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
and before end

Code: Select all | Expand

#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 :shock:
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 :?:
greeting,
Jimmy
Post Reply