Application.WindowDeactivate Event (Publisher)
Occurs when the application window is deactivated.
Syntax
expression .WindowDeactivate(Wn, )
expression A variable that represents an Application object.
Parameters
Name |
Required/Optional |
Data Type |
Description |
---|---|---|---|
Wn |
Required |
Window |
The window that is being deactivated. |
Remarks
For information about using events with the Application object, see Using Events with the Application Object.
Example
This example minimizes the window when it is deactivated. This code must be placed in a class module, and an instance of the class must be correctly initialized to see this example work; see Using Events with the Application Object for directions on how to accomplish this.
Public WithEvents appPublisher as Publisher.Application
Private Sub appPublisher_WindowDeactivate _
(ByVal Wn As Window)
Wn.WindowState = pbWindowStateMinimize
End Sub