Is there a .net control I can use which will allow me to create a program which allows me to browsers through drives and folders to open any given file in the associated program and start any program?
Would OpenFileDialog do this, or is there a windows explorer type control I could use?
No, there’s no control. However:
Process.Starton a filename will automatically open it with the default handler.IO.DirectoryInfoandIO.FileInfotypes to retrieve the directory structure.TreeViews andListViews to emulate Explorer’s controls.