spymare 0 Posted January 31, 2011 HI :-).Is it possible to get a folder inside a GUI? so it work's as a normal folder, where you can drop items into it?This is how i guess it would look like, if it's possible : Share this post Link to post Share on other sites
JohnOne 1,603 Posted January 31, 2011 (edited) #include <GUIConstantsEx.au3> $oIE = ObjCreate("Shell.Explorer.2") GUICreate("", 600, 600, (@DesktopWidth - 600) / 2, (@DesktopHeight - 600) / 2) $GUIActiveX = GUICtrlCreateObj($oIE, 0, 0, 600, 600) GUISetState() $oIE.navigate("file://C:\") While 1 $msg = GUIGetMsg() Switch $msg Case $GUI_EVENT_CLOSE Exit EndSwitch WEnd Edited January 31, 2011 by JohnOne AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans. Share this post Link to post Share on other sites