Invokes the Expression Browser dialog. | |
Syntax: | SCODE = object.BrowseExpressions ( expressionNameOut ) |
Parameters: |
expressionNameOut As BSTR* - A string representing the expression
picked or empty if no item is picked.
|
Description: | browser.BrowseExpressions displays the
browse dialog and waits for the user to pick an item or cancel. If
the user picks an item a value of S_OK is returned, if the user
does not pick an item a value of S_FALSE is returned. Example Dim expression as String i = browser.BrowseExpressions(expression) If CInt(i) = 0 Then MsgBox "Expression " &
expression |