pgr Posted March 30, 2006 Posted March 30, 2006 Hi, Im messing around with a Network Drive Mapping GUI and need a way to show all unused drive letters in a combo box... has anybody got a clue? I have no real clue how i could archive this... possible would be a List from A: to Z: and then filter the used entrys out of that list (with DriveGetDrive) i think, but I be thankful for any help on this one ;-) pgr
MSLx Fanboy Posted March 30, 2006 Posted March 30, 2006 Hope this helps #include <Array.au3> Dim $aDrives[1] = [0] For $x=Asc("A") To Asc("Z") MsgBox(0, '', Chr($x), 3) If FileExists(Chr($x) & ":\") Then ContinueLoop Redim $aDrives[UBound($aDrives)+1] $aDrives[0] += 1 $aDrives[UBound($aDrives)-1] = Chr($x) Next _ArrayDisplay($aDrives, "Drives Available") Writing AutoIt scripts since _DateAdd("d", -2, _NowCalcDate())
pgr Posted March 30, 2006 Author Posted March 30, 2006 Thanks for the fast response, I think this helps... will try to integrate them into my Script :-)
pgr Posted March 30, 2006 Author Posted March 30, 2006 Works! :-) I pass the Data into my ComboBox with GUICtrlSetData(-1,$DrivesAvail[$n] & ":" & "|") and get the listing i wanted to have... thanks a lot for your help guys! pgr
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now