Hello, imagine you are using webBrowser control to browse local file system, so it behaves like Explorer
WebBrowser wb = new WebBrowser();
wb.Navigate(@"c:\");
Now it displays contents of c:\ directory. But I'd like it to programatically set the view mode to "Details" view and not to display whatever mode the logged-in user currently uses.
Thanks