Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1210
URGENT!!! error on ultraNavigationBar
posted

this.ultraNavigationBar1.RootLocation.Text = @"C:\CMT\";

 

or:

this.ultraNavigationBar1.RootLocation.Text = @"C:\CMT";

gives me this error:

An UltraNavigationBarLocation cannot contain the PathSeparator in any part of the text which is used to identify it when parsing a navigation path.

How do I specify a starting folder?

 

Parents
No Data
Reply
  • 1210
    posted

    I solved my question above with:

    ultraNavigationBar1.NavigateTo("C:\\CMT", true);

    My question now is how do I prevent the user from going to the parent of the root I navigate to. IE... I want to just let them navigate within a certain root folder or it's sub folders.

Children