Help for this page

Select Code to Download


  1. or download this
    $self->run_modes ({
            'logon'     =>  'LogonPage',
    ...
            'menu'      =>  'MenuPage',
            'todo'      =>  'ToDoPage'
        }); #   your run_modes argument was not explicitly a hash - the br
    +aces correct this
    
  2. or download this
    Can't use string ("LogonPage") as a subroutine ref while "strict refs"
    + in use at /usr/local/lib/perl5/site_perl/5.6.0/CGI/Application.pm li
    +ne 90.
    
  3. or download this
    $self->run_modes (
            'logon'     =>  \&LogonPage,
    ...
            'menu'      =>  \&MenuPage,
            'todo'      =>  \&ToDoPage
        ); #   your run_modes argument was not explicitly a hash - the bra
    +ces correct this