Hello, everybodyIs it possible to catch CorelDraw window activate event?
Assume I have 2 user applications running - MS Word and CorelDrawNow I write text in Word, then activate CorelDraw WindowHow to execute
MsgBox "Welcome to CorelDraw! "Greetings!
(+) application.WindowActivate event - Developer Area - CorelDRAW Community
(+) application.OnApplicationEvent event - Developer Area - CorelDRAW Community
Private Sub GlobalMacroStorage_OnApplicationEvent(ByVal EventName As String, Parameters() As Variant)If EventName = "AppActivationChange" Then If Parameters(0) Then 'TODO DONT USE MSGBOX End If End IfEnd Sub
Thank You!