in reply to Win32::GUI::Icon problem with perlapp exe

PerlApp can't possibly know that string literal contains a file name to include. A quick look at the documentation finds --bind perl.ico

Update: You'll have to change your code to

defined( my $icon_qfn = PerlApp::extract_bound_file("perl.ico") ) or die("perl.ico not bound to application\n"); my $MainIcon = new Win32::GUI::Icon($icon_qfn);

Replies are listed 'Best First'.
Re^2: Win32::GUI::Icon problem with perlapp exe
by TAHAIC (Novice) on Dec 23, 2008 at 11:13 UTC
    Thanks that seams to work!

    TAHAIC