

| Type | Description |
The following VB sample prevents opening a zip file ( which is considered a folder item ):
Private Sub ExShellView1_ObjectSelect(ByVal Object As EXSHELLVIEWLibCtl.IExShellObject)
If Object.Name Like "*.zip" Then
ExShellView1.CancelObjectSelect
End If
End Sub