Event fired if the ".rwtproject" file has changed.

Syntax:

OnChangeRWTProjectFileModifiedFlag(Project As TranslationProject, Modified As Boolean)
Parameters: Project Corresponding project to the ".rwtproject" file that has changed.
Modified True: Modified flag is true. False: Modified flag is false.

Example:
' in a class module "EventClass"

Dim WithEvents App As Application

Private Sub App_OnChangeRWTProjectFileModifiedFlag(ByVal Project As TranslationProject, _
	ByVal Modified As Boolean)
 
[...]

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