FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Harbour/xHarbour what can make Problem with BEGIN SEQUENCE ?
Posts: 1772
Joined: Thu Sep 05, 2019 05:32 AM
what can make Problem with BEGIN SEQUENCE ?
Posted: Tue Feb 28, 2023 05:17 AM
hi,

i have a funny "Problem" when using BEGIN SEQUENCE

i have put this on "top" of Method
Code (fw): Select all Collapse
#ifdef Use_SEQUENCE
   bSaveError := ERRORBLOCK()
   ERRORBLOCK( { | e | BREAK( e ) } )
   BEGIN SEQUENCE
#endif
and before end
Code (fw): Select all Collapse
#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

Continue the discussion