WindowActivate Event
Home Page (Objects) | Overview | FAQ | Reference
Applies to: Application object
Occurs after a specified window becomes active.
Syntax
object**_WindowActivate(window)**
Parameters
object
An expression that evaluates to an Application object.
window
The Window object that triggers this event.
Remarks
Developer Studio fires this event after the window becomes active.
For an overview about using event code, see the introduction to events.
Example
Following is a sample event handler for the WindowActivate event. Copy this into your macro file, and then insert the appropriate code.
sub Application_WindowActivate(theWindow)
' Insert code to handle the event here
end sub
See Also WindowDeactivate event.