Cory Posted May 25, 2005 Report Share Posted May 25, 2005 Short version: When setting a string from folder name it always defaults to "My Computer" in the dialog box. Is there a way to make it start from a specific folder or remember it's last folder it browsed to? Longer version: I am setting a string from a folder name by prompting the user to browse to it. The Macro is a loop that will repeat many times. My problem is that the path the user wants to start I is way down the tree on a network share and the dialog box always opens to “My Computer” causing the user to click down thru several levels of directories. How can I eliminate this? Maybe there is another way for a user to select a folder in a certain directory. Sorry for so many posts. Quote Link to comment Share on other sites More sharing options...
kevin Posted May 25, 2005 Report Share Posted May 25, 2005 It depends on whether you are prompting for a folder or a filename. The Variable Set String %T1% from Folder Name does not have a way to select which folder to start in. But, the Variable Set String %T1% from File Name does. To do this just set the variable that the Variable Set String from File Name will use to a value prior to the Variable Set String from File Name. Like this: Variable Set String %T1% "e:\temp" Variable Set String %T1% from File Name Quote Link to comment Share on other sites More sharing options...
Cory Posted May 25, 2005 Author Report Share Posted May 25, 2005 I am doing the folder, not file. Do I undersand your correctly that the answer is "No"? Quote Link to comment Share on other sites More sharing options...
kevin Posted May 25, 2005 Report Share Posted May 25, 2005 Correct. Quote Link to comment Share on other sites More sharing options...
randallc Posted July 3, 2005 Report Share Posted July 3, 2005 (edited) Hi, You can simulate this with pure ME3 by selecting a random file in the file picker, as in my DOS launch macro; only for "Source" Directory, as DO need to select a dummy file DOS launch; "folder picker"; click link Best, Randall EDIT - only for "Source" Directory, as DO need to select a dummy file Edited July 4, 2005 by randallc Quote Link to comment Share on other sites More sharing options...
randallc Posted July 3, 2005 Report Share Posted July 3, 2005 (edited) Alternatively, try this vbs script; puts multiple selections of folders and/ or files from multiple folders if needed into a file for selection (eg FTP?) FolderPickerVBS.JPG Lets you pick initial directory. Randall (PS Hey - First time I have a thumbnail to click a picture; by accident, now I can't do it! -How is it done? EDIT -sorry; corrected (missing registry entry for transfer) - uploaded again FolderPickerVBS.mxe Edited July 4, 2005 by randallc Quote Link to comment Share on other sites More sharing options...
randallc Posted July 3, 2005 Report Share Posted July 3, 2005 A third option (if you can use it where you are) is to use my "MEBasic" with "Wizard; mEBasic Wizard FolderPickWIZ.JPG Quote Link to comment Share on other sites More sharing options...
Cory Posted July 7, 2005 Author Report Share Posted July 7, 2005 I eventually created my own simple picker. The user types in the first three characters and it give a multiple choice dialog box that they can select from. Works super fast and slick. Thanks for the suggestions though. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.