+ Reply to Thread
Results 1 to 5 of 5

File Browser

  1. #1
    Registered User
    Join Date
    09-16-2005
    Location
    Bangalore, India
    Posts
    47

    Unhappy File Browser

    Hi,

    How do I perform the

    "Set File_Browser = Application.FileDialog(msoFileDialogOpen)"

    function in Excel "2000"

    Please help,
    Thanks,
    Baapi
    Thanks,
    Baapi

  2. #2
    Valued Forum Contributor mudraker's Avatar
    Join Date
    11-10-2003
    Location
    Melbourne, Australia
    Posts
    3,983
    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

  3. #3
    Valued Forum Contributor
    Join Date
    08-26-2006
    Location
    -
    MS-Off Ver
    2010
    Posts
    388
    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.

  4. #4
    Registered User
    Join Date
    09-16-2005
    Location
    Bangalore, India
    Posts
    47
    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

  5. #5
    Valued Forum Contributor mudraker's Avatar
    Join Date
    11-10-2003
    Location
    Melbourne, Australia
    Posts
    3,983
    Baapi

    As I have Office 2003 I did not realize it was not available in 2000

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1