Hello everyone,
I use event definitions to update certain list boxes in windows when certain actions are performed in a container in that window. This works well so far.
However, I would now also like to execute certain events in another window from which the other window was opened. Is it also possible to access the event definition in one window from another window using, for example, “raiseevent myevent”?
no an event is private to a window other classes and other windows cannot access it
but you can make a window global method that the other window can call
and this method raises the event
1 Like
Good idea, thanks Jean-Yves.