I have a small program attached. In that program I have 3 actions. Action3 is bound to the form. After a mouseclick anywhere in the form Action2 (bound to Button2) must be executed. The same in the CheckGroup, when itemclicked, Action 1 (bound to button1) must be executed.
I can succeed in 2 ways.
1. I call directly the procedure Action2Execute (or Action1Execute).
2. I use the statement Button2.Action.Execute.
Why can't I use ExecuteAction? When I do, nothing happens. And ExecuteActions seems to me a more elegant way.