![]() | Type | Description |
The following VB sample opens the files when the user double clicks a file object:
Private Sub ExShellView1_DblClick()
With ExShellView1
.Objects.Get (SelectedItems)
With ExShellView1.Objects
If (.Count > 0) Then
Dim i As EXSHELLVIEWLibCtl.ExShellObject
Set i = .Item(0)
If (Not i.Attribute(IsFolder)) Then
i.InvokeCommand ("Open")
End If
End If
End With
End With
End Sub