Does the following code guaranteed the POST(EVENT:User) will be processed by the following ACCEPT Loop? Or, is there a chance that the underlying open window (on the current thread) will receive the event instead of the newly opened “MyWindow” window?
OPEN(MyWindow)
POST(EVENT:User)
ACCEPT
CASE EVENT()
OF EVENT:User
START(MyNewProc,ADDRESS(SELF),THREAD() )
OF EVENT:User+1
BREAK
END
END
CLOSE(MyWindow)