nagesh Posted February 4, 2021 Report Share Posted February 4, 2021 Need to know, "if i actuate a event case by some variable, in the same event i should pass the control to another event case". Is this can be done, If yes how can it be done?? PS: If it can be done by property node, what should be the reference. Quote Link to comment
ensegre Posted February 4, 2021 Report Share Posted February 4, 2021 There is no such a thing like a property node of an event structure which tells what event has been fired (at least in a simple way that I could know), but it is completely possible for the code inside an event case to fire other event(s), which cause other cases of the same or of another structure to be called. You can use anything which generate events: value (signaling) of any control, dynamic events, etc. Personally I do such things all the time in simple GUIs. However, an event calling another event already smells of "you need rather a state machine" or "you need to think at architecture". Quote Link to comment
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.