spymare Posted January 31, 2011 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 :
JohnOne Posted January 31, 2011 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.
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