Event fired when a project document has been activated.

Syntax:

OnActivateProjectDocument(Project As TranslationProject)
Parameters: Project Project of the activated project document.

Example:
' in a class module "EventClass"

Dim WithEvents App As Application

Private Sub App_OnActivateProjectDocument(ByVal Project As TranslationProject)
 
[...]

End Sub

' in a module

Public EventManager As New EventClass

Sub TestMacro()
	Set EventManager.App = Application
End Sub

See also:

Class Application

Last Updated: 04/26/05