Hey guys,
I'm quite new to AutoIt and I want to code a simple script for files.
I want to drag files with my mouse from the desktop/a folder and drop them in the programm on a list.
The list should add the filenames as a item.
Now I would like if someone could tell me with what functions I could do this.
Thats all I guess for now.
best regards.
Drag&Drop and List
Started by
Dr7
, Feb 22 2012 06:26 PM
1 reply to this topic
#1
Posted 22 February 2012 - 06:26 PM
#2
Posted 22 February 2012 - 06:56 PM
Hi, Dr7, welcome to the forums. Check out the functions GUICreate, GUICreateList, and the GUI Control Styles page in the helpfile (specifically, $WS_EX_ACCEPTFILES). This is real quick, but should nudge you in the right direction.
#include <GUIConstantsEx.au3> #include <WindowsConstants.au3> Local $msg GUICreate("My Drag 'N Drop GUI", 200, 200) $mylist = GUICtrlCreateList("My List", 10, 10, 100, 100, Default, $WS_EX_ACCEPTFILES) GUISetState(@SW_SHOW) While 1 $msg = GUIGetMsg() If $msg = $GUI_EVENT_CLOSE Then ExitLoop WEnd GUIDelete()
J.I spent 10 minutes reviewing code and thinking "What kind of drugs is this guy on?" before realizing it was something I wrote.My Scripts:Include Source with Compiled Script, Disk Maintenance for Windows XP, "Deal-A-Day" Sites, SCCM 2007 Front End, Windows Firewall UDF
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users




