1. Why Win32Lib w32HDragAndDrop triggered 3 times for ONE action?
- Posted by DanM Sep 03, 2010
- 1030 views
If I'm right, w32HDragAndDrop is triggered 3 times for ONE action. This shouldn't be, right?
Dan
2. Re: Why Win32Lib w32HDragAndDrop triggered 3 times for ONE action?
- Posted by SPringle Sep 04, 2010
- 976 views
Win32lib has detailed documentation and from the document for this event, EVENT.htm#W32HDRAGANDDROP. When dragging a file over as apposed to a control item in the same app the drag and drop handler is called at least three times. This is working correctly.
Shawn Pringle
3. Re: Why Win32Lib w32HDragAndDrop triggered 3 times for ONE action?
- Posted by DanM Sep 04, 2010
- 988 views
Win32lib has detailed documentation and from the document for this event, EVENT.htm#W32HDRAGANDDROP. When dragging a file over as apposed to a control item in the same app the drag and drop handler is called at least three times. This is working correctly.
Shawn Pringle
Thanks Shawn, I've now RTFM, and I think I understand it better. Looks, though, like you can only drag a maximum of NINE files, since: "In the first call, data contains one integer. This is the number of files about to be passed to your handler routine. ". One integer, biggest single integer is 9, therefore only can drag 9 files, which seems strange, but I guess it's right or deliberate.
Thanks again,
Dan
4. Re: Why Win32Lib w32HDragAndDrop triggered 3 times for ONE action?
- Posted by LarryMiller Sep 04, 2010
- 959 views
A Euphoria integer can be over 1 billion. Digits are limited to 0-9.
5. Re: Why Win32Lib w32HDragAndDrop triggered 3 times for ONE action?
- Posted by DanM Sep 04, 2010
- 907 views
[removed, thought I stopped save, must have not, can't delete it via edit]
6. Re: Why Win32Lib w32HDragAndDrop triggered 3 times for ONE action?
- Posted by DanM Sep 04, 2010
- 959 views
[removed, thought I stopped save, must have not, can't delete it via edit]
7. Re: Why Win32Lib w32HDragAndDrop triggered 3 times for ONE action?
- Posted by DanM Sep 04, 2010
- 931 views
A Euphoria integer can be over 1 billion. Digits are limited to 0-9.
Jeeze, color me RED-FACED DUMB! How I could "read" INTEGER and "think" DIGIT is beyond me! Wow!
dan