View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Ivan Raiminius Ivan Raiminius is offline
external usenet poster
 
Posts: 258
Default Opening Windows Explorer...

Hi Timmy,

you can use something like this:

folder_you_want_as_string="C:\" 'for example
shell("explorer.exe /e," & folder_you_want_as_string, vbNormalFocus)

See help on shell function for more details.

Regards,
Ivan