Event fired when a dictionary is is removed from the RC-WinTrans dictionary collection.

Syntax:

AfterRemoveDictionary(FileType As String, Filename As String)
Parameters: FileType Type of the file on which the dictionary is based.
FileName Name of the file on which the dictionary is based.

Example:
' in a class module "EventClass"

Dim WithEvents App As Application

Private Sub App_AfterRemoveDictionary(ByVal FileType As String, 
ByVal Filename As String)
 
[...]

End Sub

' in a module

Public EventManager As New EventClass

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

See also:

Class Application

Last Updated: 01/26/06