Event fired if a translation project has been added to the RC-WinTrans project tree.

Syntax:

OnAddProject(Project As TranslationProject)
Parameters: Project Project that has been added.

Example:
' in a class module "EventClass"

Dim WithEvents App As Application

Private Sub App_OnAddProject(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