I have a form in a Delphi project. There is a button on the form. When the user clicks the button, I want it to open Windows Explorer.
What code will I need to achieve this?
|
|
|
|
|
|
|
Well in case you need to select some particular file in explorer I have the following function which I use
and you can call it :
EDIT: As mentioned ShellAPI must be added to your uses list |
||||
|
|
|
Try this:
You'll need to add |
||
|
|
|
|
Building on what Mason Wheeler said: you can also pass in a directory as an argument, to get the window to open to a non-default location:
|
|||
|
|
|
|
According to http://msdn.microsoft.com/en-us/library/bb762153%28VS.85%29.aspx, ShellExecute also supports the 'explore' verb, which 'explores' a folder specified by lpFile, so this should work:
|
||
|
|