[perl-win32-gui-users] Silly question

2003-04-22 Thread Cruickshanks, Darin
This seems like it will have an obvious answer but I really cant see it in the documentation?!? How do you 'kill off' any child windows that may have been created? Cheers, Darin Darin Cruickshanks Labs Manager, Computing Service University of Es

RE: [perl-win32-gui-users] Silly question

2003-04-22 Thread Maksim Golunov
I faced the problem as well. Even looked at MFC implementation of DoModal(). Eventually, I haven't found nothing better that calling $window->Hide() for child windows. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Cruickshanks, Darin Sent: Tuesday, April

RE: [perl-win32-gui-users] Silly question

2003-04-22 Thread Stuart Arnold
I haven't tried it but you may be able to do a plain "SendMessage( WM_DESTROY...)" to the Child window. I believe you'll need to used the windows "-handle" property or GetWindow() func to do it. I'll take a look tinite on it. Lemme know if it works or not. -stuart -Original Message- From: [

[perl-win32-gui-users] Win32::GUI::DIBitmap

2003-04-22 Thread Iain Whyte
Hi there, Anyone used this module successfuly? If I attempt to run the synopsis code: use Win32::GUI; use Win32::GUI::DIBitmap; $W = new Win32::GUI::Window ( -title=> "Win32::GUI::DIBitmap test", -pos => [100, 100], -size => [400, 400],