CimBrowse.BrowseEntity (method)

Invokes the Browser object.
Syntax: Boolean = object.BrowseEntity ( strResult )
Parameters:
strResult As BSTR* - A string representing the item picked or empty if no item is picked
Description: CimBrowse.BrowseEntity displays the browse dialog and wait for the user to pick an item or cancel. If the user picks an item a value of True is returned, if the user does not pick an item a value of False is returned.


Example

Dim result as String
if browseObject.BrowseEntity(result) = True then
   MsgBox "Picked " & result
End If