Hi,
Info
I'm building a simple folder navigation application in C#. I added a webbrowser and a button to the form. if button1 is clicked the webbrowser should navigate to C:\
Question
when i run the application the folders&files are sorted in tiles view, i want them to be sorted in details view. any suggestions on how to accomplish that ?
Thanks in advance !!!!
Info
I'm building a simple folder navigation application in C#. I added a webbrowser and a button to the form. if button1 is clicked the webbrowser should navigate to C:\
Code:
private void button1_Click(object sender, EventArgs e)
{
webBrowser1.Navigate(@"C:\");
}
when i run the application the folders&files are sorted in tiles view, i want them to be sorted in details view. any suggestions on how to accomplish that ?
Thanks in advance !!!!
Comment