Launch Windows Explorer from VB.NET

  • Thread starter Thread starter Mathias
  • Start date Start date
M

Mathias

Do anyone have any idéa of how to launch Windows Explorer from VB.NET.

When I launch the explorer I also want to show files from diferent
directories as the Windows Search function does.

Thanks for support / Mathias
 
Do anyone have any idéa of how to launch Windows Explorer from VB.NET.
System.Diagnostics.Process.Start("explorer.exe");


When I launch the explorer I also want to show files from diferent
directories as the Windows Search function does.

I don't think you can do that easily, you would probably have to
create a shell extension for that.



Mattias
 
Back
Top