Hi,
How do I perform the
"Set File_Browser = Application.FileDialog(msoFileDialogOpen)"
function in Excel "2000"
Please help,
Thanks,
Baapi![]()
Hi,
How do I perform the
"Set File_Browser = Application.FileDialog(msoFileDialogOpen)"
function in Excel "2000"
Please help,
Thanks,
Baapi![]()
Thanks,
Baapi
Baapi
For your future reference I suggest you try the Help File 1st
Never having used Application.FileDialog(msoFileDialogOpen) I placed my cursor at the end of FileDialog pressed F1 and got all the help that required to get you on your way
This code is from the Help file
Sub UseFileDialogOpen()
Dim lngCount As Long
' Open the file dialog
With Application.FileDialog(msoFileDialogOpen)
.AllowMultiSelect = True
.Show
' Display paths of each file selected
For lngCount = 1 To .SelectedItems.Count
MsgBox .SelectedItems(lngCount)
Next lngCount
End With
End Sub
As I understand it, the FileDialog object is only available with Office 2002 and above. As an alternative there is the GetOpenFilename Method to display an Open dialog box.
![]()
Please Login or Register to view this content.
I'm sorry Moderator, but I don't think you read my question completely... I was talking about Ver-2000 and I'm sure it is not available in 2000 Help.
Thanks,
Baapi
Baapi
As I have Office 2003 I did not realize it was not available in 2000
There are currently 1 users browsing this thread. (0 members and 1 guests)
Bookmarks