Help for this page

Select Code to Download


  1. or download this
        $m_mgr->Update();
        $this->{m_mgr} = $m_mgr ;
    ...
    $this->Show; ## memory access violation here NO MORE
    $app->MainLoop;
    $this->{m_mgr}->UnInit(); ## without this its fault address 0x001d4d91
    +.
    
  2. or download this
    #!/usr/bin/perl --
    use strict;
    use warnings;
    ...
        }
        sub DESTROY { shift()->{m_mgr}->UnInit(); }
    }