ShellFolderViewOC.EnumDone event

Indicates that the ShellFolderView object has finished enumerating the folder's contents.

Syntax

function EventHandler()
{
    // Code to handle the event.
}

// Set the event property to the handler.
ShellFolderViewOC.EnumDone = EventHandler;

Parameters

This event handler has no parameters.

Remarks

The ShellFolderView object must enumerate the contents of a folder before it can display it. With folders that are large or located on a remote system, this process can take as much as several minutes. During this time, an animated flashlight graphic is displayed to indicate to the user that processing is under way. Once the enumeration is complete, the EnumDone event is fired and the flashlight graphic is replaced by the contents of the folder.

Provide event handling code for this event as shown here.

 
Private Sub object_EnumDone()
    'Event handling code
End Sub
                

Requirements

Requirement Value
Minimum supported client
Windows 2000 Professional, Windows XP [desktop apps only]
Minimum supported server
Windows Server 2003 [desktop apps only]
Header
Shldisp.h
IDL
Shldisp.idl
DLL
Shell32.dll (version 5.0 or later)

See also

ShellFolderViewOC