RC-WinTrans Object Model Help |
Application.OnSaveDictionary |
Event fired if a dictionary is saved.
Syntax: |
SaveDictionary(FileType As String, Filename As String, ReturnSuccess As ReturnBoolean) |
Parameters: |
FileType Type of the file on which the dictionary is based. FileName Name of the file on which the dictionary is based. ReturnSuccess Parameter to store the operation's result.
|
Example: | ' in a class module "EventClass" Dim WithEvents App As Application Private Sub App_OnSaveDictionary(ByVal FileType As String, ByVal Filename As String, ByVal ReturnSuccess As ReturnBoolean) [...] End Sub ' in a module Public EventManager As New EventClass Sub TestMacro() Set EventManager.App = Application End Sub |
See also: