in reply to Images in Perl/Tk Dialog Box
You will also need to create the photo and canvas widgets as part of your dialogbox. ie it should read
and a similar declaration for your canvas widget.my $dialog_about = $main_window->DialogBox( -title => "About $program_title",); $image = $dialog_about->Photo ( -file => 'aboutIE.bmp', -height => 413, width => 289);
|
|---|