in reply to Re: Win32::GUI in Active perl 5.16.3
in thread Win32::GUI in Active perl 5.16.3

While trying with Active Perl 5.16.3 a window with message Perl command line interpreter has stopped working comes up.
Problem signature: Problem Event Name: APPCRASH Application Name: perl.exe Application Version: 5.16.3.1603 Application Timestamp: 5140cc97 Fault Module Name: MSVCRT.dll Fault Module Version: 7.0.7600.16385 Fault Module Timestamp: 4a5bda6f Exception Code: c0000005 Exception Offset: 00018dbd OS Version: 6.1.7600.2.0.0.256.1 Locale ID: 1033 Additional Information 1: 0a9e Additional Information 2: 0a9e372d3b4ad19135b953a78882e789 Additional Information 3: 0a9e Additional Information 4: 0a9e372d3b4ad19135b953a78882e789 Read our privacy statement online: http://go.microsoft.com/fwlink/?linkid=104288&clcid=0x0409 If the online privacy statement is not available, please read our priv +acy statement offline: C:\Windows\system32\en-US\erofflps.txt

Replies are listed 'Best First'.
Re^3: Win32::GUI in Active perl 5.16.3
by Anonymous Monk on May 06, 2013 at 10:36 UTC
    If you add  warn "got here"; after all the use statement, but before your program runs, does it get printed?
      yes it gets printed but after that it crashes
      use Win32::GUI(); warn "got here"; $main = Win32::GUI::Window->new(-width => 100,-height => 100,); $main->AddLabel(-text => "Hello, world"); $main->Show(); Win32::GUI::Dialog();
      output
      got here at test2.pl line 2.
      After printing this it crashes and the same error comes.
        well, keep moving it until you find the line it crashes at :)

        Also, did you successfully run the Win32::GUI test suite?

Re^3: Win32::GUI in Active perl 5.16.3
by samir_gambler (Novice) on May 06, 2013 at 12:23 UTC
    Do any one have some idea how to solve this issue...Thanks