- René Ullrich
- PowerBuilder
- Thursday, 7 November 2019 11:55 AM UTC
Hi,
I have a problem with posted events.
Here a small simplified example of code:
POST Event ue_posted_event()
MessageBox ("", "test")
Event ue_triggered_event()
In this case the code in ue_posted_event is called after the code in ue_triggered_event. This is expected behaviour.
Now a simple change:
POST Event ue_posted_event()
open (w_response) // w_response is a response window
Event ue_triggered_event()
I expect the same behaviour. But here ue_posted_event is called before ue_triggered_event. It is called after the open event of w_response.
Why?
How can I get the same behaviour as with MessageBox?
Thanks!
Find Questions by Tag
Helpful?
If a reply or comment is helpful for you, please don’t hesitate to click the Helpful button. This action is further confirmation of their invaluable contribution to the Appeon Community.