When I use DirectoryRequesting to set a user's root folder, the Tree Navigation Pane doesn't show the path. The only element that appears is "This PC" and if I cIick it I can't get back to the folder with the files. would prefer that it would show the specified folder as the root element in the Tree Navigation Pane since there will be multiple folders within this root folder.
Private Sub saveFileDialog_DirectoryRequesting(ByVal sender As Object, ByVal e As DirectoryRequestingEventArgs) Handles RadSaveFileDialog1.DirectoryRequesting
If Not e.Directory.FullName.StartsWith("D:\Executech\Hotel") Then
e.Cancel = True
End If
End Sub