HAPPY NEW YEAR

I congratulate everyone on the arrival of the New Year 2024! I wish you good health! Let the world calm down, let there be peace and prosperity!

The forum is for Coreldraw, but since Corel supports VBA, it is also for Visual basic for application too.
Look what I found after a lot of searching.

Excel 2013 tested
Private Sub CommandButton29_Click()
AppActivate Application.Caption
End Sub

The above code activates the active cell in Excel so that, after clicking the button located on a custom form, one can write in it.
I was expecting the same code to activate from a custom form and the Word page, but it didn't. 
To activate the Word page from a custom form I successfully used Application.Activate
As you might have guessed, Application.Activate does not work in Excel.

Word 2013 tested
Private Sub CommandButton29_Click()
Application.Activate
End Sub

I wonder where in CorelDraw such a method would be useful.

Kind Regards!