A program I wrote pops up with a Tk window as an error dialog. Works nicely although I've noticed it often doesn't bring itself to the VERY front of all my other applicaton windows. As an error dialog this isn't desirable. Below is the code for the error dialog which I call from main. The "withdraw/popup" methods centre it on the screen, which I want to keep. The "focus" method I thought would bring it to the front but no such luck. I've also tried "raise". Does anyone know how to force it to the front on a Win32 system? Thanks
sub dying {
my ($error) = @_;
if (!$error) {
$error = "(none given)";
}
my $text;
$text .= "\n\nTARsync Error:\n\nFailed during:\n$message\n\nReason
+:\n$error";
if ($poperr) {
my $box = new MainWindow(-title => "ZIPsync failed!",
-bg => 'yellow',
-bd => 4,
-relief => 'ridge');
$box->overrideredirect(1);
my $label = $box->Label(
-textvariable=> \$text,
-bg=> 'yellow',
)->pack(-fill=>'both',
-padx => 40,
);
Win32::Sound::Play('SystemExclamation');
my $ok = $box->Button(-text => "OK",
-command => [sub{$box->destroy;
exit;
} ]
)->pack(-padx => 20,
-pady => 20
);
$box->withdraw;
$box->Popup;
$box->focus;
MainLoop;
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.