View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.programming
Michel Pierron Michel Pierron is offline
external usenet poster
 
Posts: 214
Default Load Windows Explorer

Hi raj;
Sub DirExplore()
With CreateObject("Shell.Application")
.Explore "C:\Mes Documents"
End With
End Sub

MP

"raj" a écrit dans le message de
...
Hello, please help.

What is the easiest method to open a new instance of
Windows Explorer and have it display a certain subfolder
with a split screen (i.e. folders on left/files & file
details on right)?

Your example code would be most helpful, thanks.