The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# IUP::MessageDlg example

use strict;
use warnings;

use IUP ':all';

my $dlg = IUP::MessageDlg->new( DIALOGTYPE=>"ERROR", TITLE=>"IUP::MessageDlg - Error!", VALUE=>"This is an error message" );

$dlg->Popup();
$dlg->Destroy();