Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I saw where a person was opening a file using excel. The regular open dialog
box that I am used to was not being used or if it was it looked very different. When they did open it looked more like windows explorer type window and still had their "My Places" listed on the left. How is that done? Thank you, Steven |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way to achieve that will be with the following single VBA command:
SavePath = Application.FileDialog(msoFileDialogFolderPicker). Show Micky "Steven" wrote: I saw where a person was opening a file using excel. The regular open dialog box that I am used to was not being used or if it was it looked very different. When they did open it looked more like windows explorer type window and still had their "My Places" listed on the left. How is that done? Thank you, Steven |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You may also "Google" after: SHBrowseForFolder(bInfo)
Micky "מיכאל (מיקי) אבידן" wrote: One way to achieve that will be with the following single VBA command: SavePath = Application.FileDialog(msoFileDialogFolderPicker). Show Micky "Steven" wrote: I saw where a person was opening a file using excel. The regular open dialog box that I am used to was not being used or if it was it looked very different. When they did open it looked more like windows explorer type window and still had their "My Places" listed on the left. How is that done? Thank you, Steven |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() SavePath = Application.FileDialog(msoFileDialogFolderPicker). Show That is not usually the best way to go. If the dialog is cancelled, nothing happens, but if the OK button is clicked, the result is -1 and the current drive and directory are modified. This modification could cause other pieces of code to fail. A better way is to use the API function to browse for the folder. See http://www.cpearson.com/Excel/BrowseFolder.aspx for code details and examples. Cordially, Chip Pearson Microsoft MVP 1998 - 2010 Pearson Software Consulting, LLC www.cpearson.com [email on web site] On Sat, 30 Jan 2010 03:58:01 -0800, ????? (????) ????? <micky-a*at*tapuz.co.il wrote: One way to achieve that will be with the following single VBA command: SavePath = Application.FileDialog(msoFileDialogFolderPicker). Show Micky "Steven" wrote: I saw where a person was opening a file using excel. The regular open dialog box that I am used to was not being used or if it was it looked very different. When they did open it looked more like windows explorer type window and still had their "My Places" listed on the left. How is that done? Thank you, Steven |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I change the file open dialog box? | Excel Discussion (Misc queries) | |||
How to change file-open dialog box? | Excel Discussion (Misc queries) | |||
File open dialog box | Excel Discussion (Misc queries) | |||
File open dialog | Excel Discussion (Misc queries) | |||
File open dialog sorting | Excel Discussion (Misc queries) |