In general yes you'll get an error. The error will be pretty much similar to the one if you had a read error on a local drive. You should try using
or die $!; if you want the reasons for the error to be output. At least then your 'die' is a little informative.
If you want the bells and whistles version you could drop the below into your code and call it with
dying($!) instead. If you don't want the bells remove the 'sound' related lines I appended with ##>> and if you don't want the error message brutally forced to the front of all your other applications remove the 'win32Util' lines that I appended with ##%%
Happy travels! :-)
## put into the top of your main code
## Show fatal error dialog
sub dying {
my ($error) = @_;
use Tk;
use Win32::Sound; ##>>
use Win32Util; ##%%
if (!$error) {
$error = "(none given)";
}
my $text;
$text .= "\n\nError:\n\n$error";
my $box = new MainWindow(-title => "Error",
-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{print STDOUT "User selected 'OK'
+ on error message\n";
$box->destroy;
exit;
} ]
)->pack(-padx => 20,
-pady => 20
);
$box->withdraw;
$box->Popup;
Win32Util::keep_on_top($box, 1); ##%%
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.