BeforeApplicationShutDown Event
Home Page (Objects) | Overview | FAQ | Reference
Applies to: Application object
Occurs before Developer Studio shuts down.
Syntax
object**_BeforeApplicationShutDown**
Parameters
object
An expression that evaluates to an Application object.
Remarks
Developer Studio fires this event before Developer Studio ends.
For an overview about using event code, see the introduction to events.
Example
Following is a sample event handler for the BeforeApplicationShutDown event. Copy this into your macro file, and then insert the appropriate code.
sub Application_BeforeApplicationShutDown()
' Insert code to handle the event here
end sub