Bug Report Q493642
Visible to All Users

TdxShellBreadcrumbEdit control allows entering a path of the existing folder that is not a part of the currently selected Root folder when running on Windows XP

created 12 years ago

Hi,

I'm doing something with the Shell Breadcrumb control which is probably "out of bounds" in terms of proper usage. What I want to understand is if this is a bug or working as designed…

Have a look at the attached screenshot. You will note the breadcrumb control is telling me I am in my "Temp" directory. But you will note from the TreeView that no Temp directory exists in my bfCommonDocuments loation. I manually typed "C:\Temp" to produce these results.

Effectively it couldn't be easier to get the ShellBreadcrumb control out of sync with the TreeView - a simple manual entry when the root isn't bfDesktop is all it takes.

So, what up with this? The form contains no source code just components linked up and the root of the TreeView set to bfCommonDocs.

More importantly: I need to understand this… When there are multiple shell controls all linked up, which one is actually "in control". My original guess was that since the breadcrumb control can link to all other shell controls that it is effectively the "controller". But given that I can get the controls out of sync so easily it makes me nervous - what is the "real" directory the user is pointing to?

And, in case you are wondering, the reason I am asking is the same as for issue http://www.devexpress.com/issue=Q492480. My little ShellBrowser form has a single "Directory" property. Think of it as a DirectoryPicker. So what should I be Getting/Setting to get the real folder the user is looking at? Here's a bit of source to clarify:

TfmSelectFolder = class(TForm)
private
function GetDirectory : string;
procedure SetDirectory(Value : string);
public
property Directory : string read GetDirectory write SetDirectory;
end;

function TfmSelectFolder.GetDirectory : string;
begin
// result := FolderTreeView.Path;
result := bcFolder.SelectedPath;
end;

procedure TfmSelectFolder.SetDirectory(Value: string);
begin
if bcFolder.SelectedPath <> value then
bcFolder.SelectedPath := value; // this will set the treeview implicitly
// if FolderTreeView.Path <> Value then
// FolderTreeView.Path := Value;
end;
end;

Currently I have it based on the breadcrumb control. But considering how easily I managed to mess it up - I'm not certain if it should be switched to the Treeview instead.

regards,
-randall

Show previous comments (8)
DevExpress Support Team 12 years ago

    Thanks. Closed.

      Not so fast their Paulo :)
      Well, I have a reproduceable case. See attached screenshot. I've created a demo app and will start a new ticket as the source is owned by my client and hence not for public viewing.
      regards,
      -randall

      DevExpress Support Team 12 years ago

        OK. Start it.

        Answers approved by DevExpress Support

        created 12 years ago (modified 12 years ago)

        We have fixed the issue described in this ticket and will include the fix in our next maintenance update. To apply this solution before the official update, request a hotfix by clicking the corresponding link for product versions you require.

        Note: Hotfixes may be unavailable for beta versions and updates that are about to be released.

          Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

          Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.