Re: [perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Dave Crawford
I had just realized I had misnamed the owner, and was posting that I located my error. Thanks for the response! -Dave - Original Message - From: "Laurent ROCHER" <[EMAIL PROTECTED]> To: "Win32GUI" Sent: Friday, March 14, 2003 1:27 PM Subject: Re: [perl-win32-gui-users] Moving a DialogBox

Re: [perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Laurent ROCHER
Have you try -owner option : -owner => $Window Laurent. > Now that my DialogBox is correctly displaying in the foreground I've run > into another issue. I have a button in the DialogBox who's 'click' action > calls Win32::GUI::GetOpenFileName(). Unfortunately the "Open File.." dialog > box

Re: [perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Dave Crawford
Now that my DialogBox is correctly displaying in the foreground I've run into another issue. I have a button in the DialogBox who's 'click' action calls Win32::GUI::GetOpenFileName(). Unfortunately the "Open File.." dialog box displays behind my dialog box instead of appearing in the foreground. I

Re: [perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Dave Crawford
That did the trick, thanks! Apparently my RTFM skills need polishing. -Dave - Original Message - From: "Peter Eisengrein" <[EMAIL PROTECTED]> To: "'Dave Crawford'" <[EMAIL PROTECTED]>; "Win32GUI" ; <[EMAIL PROTECTED]> Sent: Friday, March 14, 2003 12:05 PM Subject: RE: [perl-win32-gui-user

RE: [perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Peter Eisengrein
How about setting -topmost => 1 ? -Original Message- From: Dave Crawford [mailto:[EMAIL PROTECTED] Sent: Friday, March 14, 2003 11:27 AM To: Win32GUI; [EMAIL PROTECTED] Subject: Re: [perl-win32-gui-users] Moving a DialogBox to the forground Thanks for the tip but still no joy. I replaced

Re: [perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Dave Crawford
Thanks for the tip but still no joy. I replaced the SetForegroundWindow() call with Win32::GUI::BringWindowToTop($Window) but I still need to click on the 3rd party app's taskbar icon and then on mine to move it to the foreground. The odd thing is that once I complete the sequence once, subsequent

[perl-win32-gui-users] Moving a DialogBox to the forground

2003-03-14 Thread Dave Crawford
I have a script that displays a DialogBox when triggered by a 3rd party application. However, I'm having trouble getting the DialogBox to appear in the foreground when displayed. I tried calling SetForegroundWindow() which only causes my application's icon to blink on the task bar. Furthermore, cli