Event fired when a dictionary is checked to see if it is online.

Syntax:

OnCheckIsOnline(FileType As String, Filename As String, ReturnOnline 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.
ReturnOnline Parameter to store in if the dictionary is online.

Example:
' in a class module "EventClass"

Dim WithEvents App As Application

Private Sub App_OnCheckIsOnline(ByVal FileType As String, 
ByVal Filename As String, ByVal ReturnOnline As ReturnBoolean)
 
[...]

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