Guest Beefteck Posted July 30, 2006 Posted July 30, 2006 (edited) Ok, the folowing is a very very early and basic design and beging structure to my program PSProKIO which is an add-on to K.I.O v0.8 Beta 3. Anyway... for now I need help with the folowing things: 1) Instead of the "Select your Drive" inside the box i need it above or below somewhere. 2) I need the little gray lines around that part because that is step one after that you look at box 2, basicly I need like lines to make a box around it... I will add a pic to show you what I need... 3) A white box that will view the folder (example) Drive G:\MS0:\ (i dont know if anybody here gets the MS part but basicly I need a white box that will be like when you go into My Computer an view a drive, so it will show all the files and folders etc... Ok this is it for now, this program will take awhile anyway thank-you to all you guys YOU RULE! for all the help... Pic is in Attachments and here is my code so far::: expandcollapse popup; ---------------------------------------------------------------------------- ; ; AutoIt Version: 3.1.1.0 (BETA) ; Author: Adam R Neveu (Beefteck) (kiosuppot@aol.com / adamn@rcn.com) ; ; Script Function: ; Keyed It Options v0.8 July 2006 ; ; ---------------------------------------------------------------------------- #include <GUIConstants.au3> ;=================================== GUICreate ( "K.I.O v0.8 - PSProKIO v0.1 Beta 1" , 800, 500) ;=================================== GUICtrlCreateCombo ("Select your Drive", 10,10) $d0 = GUICtrlSetData(-1,"Drive A","Select your Drive") $d1 = GUICtrlSetData(-1,"Drive B","Select your Drive") $d2 = GUICtrlSetData(-1,"Drive C","Select your Drive") $d3 = GUICtrlSetData(-1,"Drive D","Select your Drive") $d4 = GUICtrlSetData(-1,"Drive E","Select your Drive") $d5 = GUICtrlSetData(-1,"Drive F","Select your Drive") $d6 = GUICtrlSetData(-1,"Drive G","Select your Drive") $d7 = GUICtrlSetData(-1,"Drive H","Select your Drive") $d8 = GUICtrlSetData(-1,"Drive I","Select your Drive") $d9 = GUICtrlSetData(-1,"Drive J","Select your Drive") $d10 = GUICtrlSetData(-1,"Drive K","Select your Drive") $d11 = GUICtrlSetData(-1,"Drive L","Select your Drive") ;=================================== ;=================================== GUISetState() ;=================================== While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop Wend ;=================================== GUIDelete() EDIT: Please tell me if it is too confusing then i will take it step by step with you... thank-you very much Edited July 30, 2006 by Beefteck
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