+ Reply to Thread
Results 1 to 9 of 9

File Open Dialog

  1. #1
    Registered User
    Join Date
    08-09-2005
    Posts
    42

    File Open Dialog

    Hello, I would like to do a macro which will open another excel file through Open Dialog, so I use
    Please Login or Register  to view this content.
    .
    It's ok, but I want to open this "Open Dialog" in a location where my ActiveWorkbook is saved. How can I do this?

    I tried something like this ...
    Please Login or Register  to view this content.
    but this gives current workbook path into filetype box.

    Can anyone help, please???

    Thanks

    Tomas
    Last edited by VBA Noob; 10-25-2007 at 04:18 AM.

  2. #2
    Forum Expert
    Join Date
    01-03-2006
    Location
    Waikato, New Zealand
    MS-Off Ver
    2010 @ work & 2007 @ home
    Posts
    2,243
    HI Tomas,

    Try this:

    Please Login or Register  to view this content.
    There are ways of checking what the current directory is before changing it & then resetting this after you have run your macro but I'm not sure if you actually need/want that level of detail - let us know if you do...

    Note, I just happened to try & test this on a file (activeworkbook) which was opened from a zipped folder first & it doesn't seem to like that but it looks ok otherwise.

    hth
    Rob
    Last edited by dominicb; 10-25-2007 at 06:22 AM.
    Rob Brockett
    Kiwi in the UK
    Always learning & the best way to learn is to experience...

  3. #3
    Forum Expert dominicb's Avatar
    Join Date
    01-25-2005
    Location
    Lancashire, England
    MS-Off Ver
    MS Office 2000, 2003, 2007 & 2016 365
    Posts
    4,867

    Smile

    Good morning

    I was watching this post, to see what cropped up as I was trying something last week using GetOpenFilename and wanted it to open at a predefined location. I too used ChDir but that didn't work - broro183's code didn't do anything for me either.

    The annoying thing is that the GetSaveAsFilename has an "InitialFileName" parameter that can be used for this - GetOpenFilename doesn't have this option and the help file doesn't mention it.

    I don't like to say "never" with Excel 'cos there's nearly always a workaround. Anyone else know...

    DominicB
    Please familiarise yourself with the rules before posting. You can find them here.

  4. #4
    Registered User
    Join Date
    08-09-2005
    Posts
    42

    File Open Dialog

    Hello,

    at first THANK YOU both for your answers.


    I tried broro183 code and it's work, but only if I have saved my excel file on local computer. If I have my file on server, it doesn't work. It always open dialog in local computer location "C:\Documents and Settings\...".

    And I work with my file, which is saved on server :-(

    Any other idea, please???

    Tommy

  5. #5
    Forum Expert
    Join Date
    01-03-2006
    Location
    Waikato, New Zealand
    MS-Off Ver
    2010 @ work & 2007 @ home
    Posts
    2,243
    good morning/night here
    (it's working for me tonight but it may be just b/c I'm on a stand alone home PC at the moment)

    I'm getting a bit dopy - so I'm off to bed. Two parting questions though...

    Has the active file been saved?
    I don't think chdir will work before a file's saved.

    Is the desired default folder on another network drive?
    If so, Andy Pope gives an example of the use of chdrive in the below link (which can be modified to use the activeworkbook):
    http://www.ozgrid.com/forum/showthread.php?t=57617
    & this is discussed more in:
    http://www.ozgrid.com/forum/showthread.php?t=41488

    Also, I've glanced at the Helpfiles for "dir" & am sure we should be to tie this in but don't understand quite how...

    The annoying thing is that the GetSaveAsFilename has an "InitialFileName" parameter that can be used for this - GetOpenFilename doesn't have this option and the help file doesn't mention it.

    I don't like to say "never" with Excel 'cos there's nearly always a workaround. Anyone else know...
    Dominic, I agree, so many options - we just need to identify them. Speaking of workarounds, what happens if you open a GetSaveAsFilename dialog box & use the InitialFilename & then cancel out of it. Does this change the directory, which should then stay changed for the GetOpenFileName dialog?

    goodluck to you both!

    hth
    Rob

  6. #6
    Registered User
    Join Date
    08-09-2005
    Posts
    42

    file Open Dialog

    Dear broro183,

    Thank you for links, I check it :-)

    I don't understand how it works...I have saved my file on server and chdir doesn't work. Only thing I want, is open the dialog in a same location as my file is saved (no need to click through a lot of folders to find it).

    But if I have saved my file on local machine then chdir works.

    Is this possible??? :-(

    tommy

  7. #7
    Registered User
    Join Date
    10-25-2007
    Posts
    13

    chdrive

    I had a simular problem.
    I solved it with

    drive = Left(ActiveWorkbook.Path, 1)
    ChDrive drive
    ChDir ActiveWorkbook.Path

    kind regards

  8. #8
    Registered User
    Join Date
    08-09-2005
    Posts
    42

    File Open Dialog

    Dear olieviep,

    thank you for your reply.

    It really works ... great :-)

    Have a nice day.

    tommy

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

    Please read forum rules & wrap your VBA code

    A thread with the rules is available at the top of each forum or see links below

    If you do not understand the VBA code wrap instructions have a look at my last reply in this thread
    http://www.excelforum.com/showthread.php?t=583950
    Please Read Forum Rules Before Posting
    Wrap VBA code by selecting the code and clicking the # icon or Read This
    How To Cross Post politely

    Top Excel links for beginners to Experts

    If you are pleased with a member's answer then use the Scales icon to rate it
    If my reply has assisted or failed to assist you I welcome your Feedback.

+ 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