Jump to content

prompt user with a dropdown box ?


AnarchOi
 Share

Go to solution Solved by Chimaera,

Recommended Posts

I need the user to select a folder before the script starts, and the chosen folder should be stored inside a variable to use in the rest of the script.

This is what i have so far:

 

#Include <File.au3>
#Include <Array.au3>

$FileList=_FileListToArray("C:", "*", 2)
If @Error=1 Then
    MsgBox (0,"","No FilesFolders Found.")
    Exit
EndIf

_ArrayDisplay($FileList,"$FileList")

 

It just displays a list of the folders, but how can i let the user pick one and transmit it to a variable ?

thanks

Link to comment
Share on other sites

  • Solution

Maybe this?

$sFileList = FileSelectFolder("Choose a drive.", "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}")

Sorry Dropdown box... my bad

Edited by Chimaera
Link to comment
Share on other sites

Maybe this?

$sFileList = FileSelectFolder("Choose a drive.", "::{20D04FE0-3AEA-1069-A2D8-08002B30309D}")

Sorry Dropdown box... my bad

 

Looks good, but is there a way to open the "select file" dialog inside a specific folder ? So it starts inside the autoit application's root folder instead of displaying the drives ?

edit: nvm i just checked the wiki and got it working. thanks !

Edited by AnarchOi
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...