jercfd Posted July 25, 2008 Posted July 25, 2008 How would I create a tree view of all of the folders on a computer like the one in windows explorer.C# example from CodeProject
jercfd Posted July 26, 2008 Author Posted July 26, 2008 i got a start but it is actually a basic explorer window. i want it like the picture above. #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $oShell = ObjCreate("Shell.Explorer.2") $Form1 = GUICreate("Form1", 633, 447, 193, 125, BitOR($WS_MINIMIZEBOX,$WS_SIZEBOX,$WS_THICKFRAME,$WS_SYSMENU,$WS_CAPTION,$WS_POPUP,$WS_POPUPWINDOW,$WS_GROUP,$WS_BORDER,$WS_CLIPSIBLINGS)) GUICtrlCreateObj( $oShell, 0, 0 , 633 , 447 ) $oShell.navigate("C:\") GUICtrlSetResizing(-1, $GUI_DOCKLEFT+$GUI_DOCKRIGHT+$GUI_DOCKTOP+$GUI_DOCKBOTTOM) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd
BrettF Posted July 26, 2008 Posted July 26, 2008 (edited) http://www.vbaccelerator.com/home/vb/Code/...ple/article.aspMaybe... On further looking, http://www.vbaccelerator.com/home/VB/Code/...ist/article.asp will probably help Edited July 26, 2008 by BrettF Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
jercfd Posted July 26, 2008 Author Posted July 26, 2008 (edited) Edit: never mind what i said before. I found the AutoIt3-Explorer program by Holger Kotsch. Edited July 26, 2008 by jercfd
BrettF Posted July 26, 2008 Posted July 26, 2008 can you please post the link.... Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
ResNullius Posted July 26, 2008 Posted July 26, 2008 can you please post the link.... http://www.autoitscript.com/forum/index.ph...ost&id=9376
BrettF Posted July 27, 2008 Posted July 27, 2008 (edited) Thanks EDIT: 4,666 post.... Edited July 27, 2008 by BrettF Vist my blog!UDFs: Opens The Default Mail Client | _LoginBox | Convert Reg to AU3 | BASS.au3 (BASS.dll) (Includes various BASS Libraries) | MultiLang.au3 (Multi-Language GUIs!)Example Scripts: Computer Info Telnet Server | "Secure" HTTP Server (Based on Manadar's Server)Software: AAMP- Advanced AutoIt Media Player | WorldCam | AYTU - Youtube Uploader Tutorials: Learning to Script with AutoIt V3Projects (Hardware + AutoIt): ArduinoUseful Links: AutoIt 1-2-3 | The AutoIt Downloads Section: | SciTE4AutoIt3 Full Version!
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