[perl-win32-gui-users] Re: MDIFrame and background Image

2005-08-15 Thread May, Robert
Jez, Before anyone runs off and implements this (stretchBlt), I already did it (last week) - it's just not checked in yet, and won't be until I'm back in the UK next week. Regards, Rob. -Original Message- From: Jeremy White [mailto:[EMAIL PROTECTED] Sent: 15 August 2005 09:15 To: [EMAI

[perl-win32-gui-users] Re: Draggable 'window' [Was: MDIFrame and background Image]

2005-08-15 Thread Steven Lloyd
Well, I have got close but I am not sure how to make the Drawn rectangle transparent or how to dispose of the DC after I am through.. Any help would be greatly appreciated. #!perl -w # Left-Click on the target image, and drag use

RE: [perl-win32-gui-users] GUI_Constants / GUI.pm error

2005-08-15 Thread aschwarz1309
-- Original message -- From: "Jeremy White" <[EMAIL PROTECTED]> > > >In particular, there are 366 entries in the search space. A binary search > >requires (at most) 9 probes for success and 10 probes for failure. This > >seems better than the existing algorithm.

[perl-win32-gui-users] {Spam?} Re: MDIFrame and background Image

2005-08-15 Thread Daniel Fernandez
Thanks to all for your help. During this weekend I made several tests, investigate a little and finally I be able to expand the image inside a MDI Frame without using calls to the APIS (gdi32.dll). I use the functions # Load our bitmap my $bm = newFromFile Win32::GUI::DIBitmap ('backgound.bm

[perl-win32-gui-users] (no subject)

2005-08-15 Thread Sergey Cherniyenko
Hello, perl-win32-gui-users, How can I turn on debugging in Win32::GUI to get some descriptive output to console. In modules I've seen that can be done. How? -- Best regards, Sergey mailto:[EMAIL PROTECTED]

RE: [perl-win32-gui-users] Re: [win32gui] {Spam?} Re: MDIFrame and background Image

2005-08-15 Thread Jeremy White
I'm trying to implement the StretchBlt function using a call to gdi32.dll in order to fill the window with the image. I've just added a feature request for this function to be supported natively within Win32-GUI. As a side note, many functions are straightforward to add (including this one)

RE: [perl-win32-gui-users] GUI_Constants / GUI.pm error

2005-08-15 Thread Jeremy White
In particular, there are 366 entries in the search space. A binary search requires (at most) 9 probes for success and 10 probes for failure. This seems better than the existing algorithm. What do you think? I like the idea - in practise does this mean that win32-gui is noticeably faster? T