Jump to content

reggy

Members
  • Posts

    13
  • Joined

  • Last visited

reggy's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. I ment that both concepts are entitled to live. So it would be great to let people choose what is better for each.I am for download alternative.
  2. PaulIA What do you think on posting the library without installer? To me it would be helpful (for me ;-) Thanks for your great toil.
  3. See http://www.autoitscript.com/forum/index.php?showtopic=22758
  4. I want to introduce my decision of file list drag&drop problem. Macro @Gui_DragFile consists only the last item in the dropped list, so I create background control to handle drop event: #include <GUIConstants.au3> GUICreate('Drop Area', 400, 300, -1, -1, -1, $WS_EX_ACCEPTFILES) ; The control to receive information ; Y=-100 to hide text and HEIGHT+100 to cover whole the window $drop = GUICtrlCreateInput('', 0, -100, 400, 400, $WS_DISABLED + $ES_AUTOHSCROLL, 0) GUICtrlSetState(-1, $GUI_DROPACCEPTED) ;------------------------ ; Create other controls here ;------------------------ GUISetState() $msg = 0 while $msg <> $GUI_EVENT_CLOSE $msg = GUIGetMsg() if not $msg then elseif $msg = $GUI_EVENT_DROPPED then if @GUI_DRAGID = -1 then ; File(s) dropped $files = GUICtrlRead($drop) ; File list in the form: file1|file2|... MsgBox(0, 'Dropped', StringReplace($files, '|', @CR)) endif endif wend GUIDelete() I hope it would be helpful. Good luck!
×
×
  • Create New...