ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Browse to select a folder (https://www.excelbanter.com/excel-programming/442631-browse-select-folder.html)

Otto Moehrbach[_2_]

Browse to select a folder
 
Excel 2003-2007
An OP posted a problem and I realized that there was one thing I needed to
know before I could help him. What is the code to allow the user to select
a folder? The result must be the full path to that folder. Note: That
path will not be the path to ThisWorkbook. Thanks for your time. Otto


Ron de Bruin

Browse to select a folder
 
See a example in the macro on this page
http://www.rondebruin.nl/csv.htm

'Browse to the folder with CSV files
Set oApp = CreateObject("Shell.Application")
Set oFolder = oApp.BrowseForFolder(0, "Select folder with CSV files", 512)
If Not oFolder Is Nothing Then
foldername = oFolder.Self.Path
If Right(foldername, 1) < "\" Then
foldername = foldername & "\"
End If




--

Regards Ron de Bruin
http://www.rondebruin.nl/tips.htm



"Otto Moehrbach" wrote in message ...
Excel 2003-2007
An OP posted a problem and I realized that there was one thing I needed to
know before I could help him. What is the code to allow the user to select
a folder? The result must be the full path to that folder. Note: That
path will not be the path to ThisWorkbook. Thanks for your time. Otto


Chip Pearson

Browse to select a folder
 
I have code and a downloadable module at
http://www.cpearson.com/excel/BrowseFolder.aspx that displays the
standard Windows Browse Folder dialog.

Cordially,
Chip Pearson
Microsoft Most Valuable Professional,
Excel, 1998 - 2010
Pearson Software Consulting, LLC
www.cpearson.com



On Tue, 18 May 2010 13:10:27 -0400, "Otto Moehrbach"
wrote:

Excel 2003-2007
An OP posted a problem and I realized that there was one thing I needed to
know before I could help him. What is the code to allow the user to select
a folder? The result must be the full path to that folder. Note: That
path will not be the path to ThisWorkbook. Thanks for your time. Otto


Otto Moehrbach[_2_]

Browse to select a folder
 
Thanks guys. Otto

"Chip Pearson" wrote in message
...
I have code and a downloadable module at
http://www.cpearson.com/excel/BrowseFolder.aspx that displays the
standard Windows Browse Folder dialog.

Cordially,
Chip Pearson
Microsoft Most Valuable Professional,
Excel, 1998 - 2010
Pearson Software Consulting, LLC
www.cpearson.com



On Tue, 18 May 2010 13:10:27 -0400, "Otto Moehrbach"
wrote:

Excel 2003-2007
An OP posted a problem and I realized that there was one thing I needed to
know before I could help him. What is the code to allow the user to
select
a folder? The result must be the full path to that folder. Note: That
path will not be the path to ThisWorkbook. Thanks for your time. Otto




All times are GMT +1. The time now is 07:05 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com