RE: [SPAM] - Re: [perl-win32-gui-users] Listview Control functionality - Drag n Drop - Email found in subject

2005-01-10 Thread Lloyd, Steve
This seems like a very useful add on code - can this be added in so that those who do not have a compiler can get this? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jez White Sent: Saturday, January 08, 2005 3:03 AM To: Chris Wearn; perl-win32-gui-us

Re: [perl-win32-gui-users] Listview Control functionality - Drag n Drop - Email found in subject

2005-01-10 Thread Jez White
Hi, Yes it can be added - Chris and came to a little 'agreement' - he supplies an perl example and I'll add the code:) The only issue is how to add support dragging with the right mouse button. How about something like this: sub Drag_Hander { my ($item,$button)[EMAIL PROTECTED]; if ($butt

RE: [perl-win32-gui-users] Listview Control functionality - Drag n Drop - Email found in subject

2005-01-10 Thread Lloyd, Steve
Shouldn't the subroutine name end with _Drag in keeping with the Windows event model? sub WindowName_Event Examples: sub Main_Terminate{return -1;} sub Main_Minimize{return 1;} ... From: Jez White [mailto:[EMAIL PROTECTED] Sent: Mon 1/10/2005 9:14 AM To:

RE: [perl-win32-gui-users] Listview Control functionality - Drag n Drop - Email found in subject

2005-01-10 Thread Frazier, Joe Jr
Jez, one thing you may want to think about is if there is a way to implement the semantics in a way simular to how Windows Explorer currently handles drag and drop for files in the Listview: Right Click + drag = Drop shows context menu with options: Copy Here, Move Here, Create ShortCut Here, SEP

Re: [perl-win32-gui-users] Listview Control functionality - Drag n Drop - Email found in subject

2005-01-10 Thread Jez White
Re: [perl-win32-gui-users] Listview Control functionality - Drag n Drop - Email found in subjectYeah sorry - it should have been BeginDrag:) - Original Message - From: Lloyd, Steve To: Jez White ; Chris Wearn ; perl-win32-gui-users Sent: Monday, January 10, 2005 4:29 PM Subje

Re: [perl-win32-gui-users] Listview Control functionality - Drag n Drop - Email found in subject

2005-01-10 Thread Jez White
Hi, From what I understand of dragging (which isn't a lot!) most of the functionality that you would need for this explorer example is present within Win32::GUI at the moment. Basically, dragging is a very manual process - you have to do most of the work - and I think most of the methods to

Re: [perl-win32-gui-users] Listview Control functionality - Drag n Drop

2005-01-10 Thread Chris Wearn
On Tue, 2005-01-11 at 04:20, Jez White wrote: > Hi, > > >From what I understand of dragging (which isn't a lot!) most of the > functionality that you would need for this explorer example is present > within Win32::GUI at the moment. > Basically, dragging is a very manual process - you have

RE: [perl-win32-gui-users] Listview Control functionality - Drag n Drop - Email found in subject

2005-01-10 Thread MJG
I've been trying to play with the BitmapInline function so I can create a dialog box with some edit fields and with a logo, but am not having much luck. Has anyone got this to work or have a better solution? I'm using Perl 5.8, Win32::Gui .558 and Mime-Base64-Perl extension. MJG use Win32::GU

RE: [perl-win32-gui-users] BitmapInline

2005-01-10 Thread Chris Wearn
Hi, First upgrade Win32::GUI to version 1.0 (download from Sourceforge). Second, you do not need to use Mime::Base64::Perl to use BitmapInline (unless you are using it as part of something else. Otherthan that, the BitmapInline should work fine. Noted that you had tacked onto this thread (RE Li