Re: [perl-win32-gui-users] Painting non-graphical controls

2008-12-19 Thread Ashrien
With the Generic_Paint method shown below, how would I 'skip' painting things like ComboBox controls (by skip I mean pass painting back to Windows or Win32::GUI) I don't know of a way to paint specific controls like that, which is why I hadn't gone farther down that road. On Fri, 19 Dec 2008 10:5

Re: [perl-win32-gui-users] Painting non-graphical controls

2008-12-19 Thread Ashrien
No, as Win32::GUI::Graphic controls don't provide a mouseOver or mouseOut event, I'm stuck with trying to modify the zorder or finding an alternative method. It's a form of 'trainer' (thats very very generalized) for an MMO. The original application had a userbase of about 5000 people. On Thu, 1

Re: [perl-win32-gui-users] Painting non-graphical controls

2008-12-19 Thread Jeremy White
Rather than a graphic, try using a normal window that's created as a child window. I do the following to draw various charts: $newwindow = new Win32::GUI::Window ( -parent => $parent, -name=> $name, -pos => $pos, -size=> $size, -pops