RE: [perl-win32-gui-users] Taskbar & perl2exe -gui crash

2001-05-26 Thread Piske, Harald
More general ... hm. What do you mean? All the topmost windows? I think the problem is too varied for a general solution. If you don't know the class names of the windows you want to find the coordinates of, how do you know which ones to choose? Well, you might go and take all the windows that are

RE: [perl-win32-gui-users] Taskbar & perl2exe -gui crash

2001-05-26 Thread Dave
I have had the same problem you mentioned about perl2exe compiled apps crashing on exit. If you come across a solution please let me know. Thanks, Dave > -Original Message- > From: [EMAIL PROTECTED] [mailto:perl-win32- > [EMAIL PROTECTED] On Behalf Of Glenn Linderman > Sent: Saturday, M

Re: [perl-win32-gui-users] Taskbar & perl2exe -gui crash

2001-05-26 Thread Glenn Linderman
Indeed, this works. I've long wondered about a way to do it, and I've now incorporated this into my (only) Win32::GUI program. I am planning to write some more Win32::GUI programs soon. It seems, though, that this solution isn't completely general. While I don't personally use it anymore, I rec

Re: [perl-win32-gui-users] Taskbar & perl2exe -gui crash

2001-05-26 Thread Webmaster CZ
Hi ! > $_ = Win32::GUI::FindWindow ("Shell_TrayWnd", ""); > @_ = Win32::GUI::GetWindowRect ($_); > > $width = $_[2] - $_[0]; > $height = $_[3] - $_[1]; ok - thx ... works fine cu Thorsten S.