GetFileOpen
-
I am trying to use the GetFileOpen command and I have it working fine. I just want it to default to open to the same folder. c:/Assembly/ here is the code I have.
fileToOpen = Application _ .GetOpenFilename("Assembly (*.exe), *.exe", , "Open Clave Drawings")
How do I get it to always open the C:\Assembly folder? Thanks, Steve -
I am trying to use the GetFileOpen command and I have it working fine. I just want it to default to open to the same folder. c:/Assembly/ here is the code I have.
fileToOpen = Application _ .GetOpenFilename("Assembly (*.exe), *.exe", , "Open Clave Drawings")
How do I get it to always open the C:\Assembly folder? Thanks, SteveI'm assuming this is code for an Office application... The short version is you can't set that in the control directly. But, you might want to try launching the file that contains your worksheet or database from that folder first to see if that takes care of it. The long version is you could write your own Open File dialog to get the exact functionality you want. RageInTheMachine9532