ShellBrowser Delphi Components Documentation
ContentsIndexHome
PreviousUpNext
ShellBrowser.TShellBrowser.BrowseObject

Use BrowseObject to browse into the current object.

Syntax
Pascal
function BrowseObject: Boolean;

returns true, if it was executed successfully.

If the current Object is a Folder you can call BrowseObject to make it the current Folder. You can use BrowseObject together with SelectParent to browse up and down in the ShellNamespace.

ShellBrowser.Folder := 'C:Windows';
ShellBrowser.ObjectName := 'System';
ShellBrowser.BrowseObject;

After this ShellBrowser.Folder would have the value 'C:WindowsSystem'.