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