Hi Everyone.I'm want to implement a browse command starting in the parent of the currently selected object (folder, workspace, etc). I've seen the examples using DefaultLocation property of the that concatenate object id's and literals "My Folders" or "My Matters".What if the current object is a workspace shortcut in My Matters ? In that case, I want to open the browser in My Matters. (Same thing for all the pseudo collections in the browser root, Favorites, etc....)What are the literals that must be used...or is there a different method ?Thanks.Bruce
ReDim arrSelectableItems(0 To 1) arrSelectableItems(0) = imObjectType.imTypeDocument arrSelectableItems(1) = imObjectType.imTypeDocumentFolder Dim sLoc As String sLoc = "\" & osess.WorkArea.RecentWorkspaces.ObjectID & "\" & ows.ObjectID & "\" & ofldr.ObjectID ocontext.Add "IManExt2.DefaultLocation", sLoc
Dim sLoc As String sLoc = "\" & osess.WorkArea.FavoritesFolder.ObjectID & "\" & oscfldr.ObjectID & "\" & ofldr.ObjectID ocontext.Add "IManExt2.DefaultLocation", sLoc