Help for this page

Select Code to Download


  1. or download this
    my $plot = $mw->Button(-text=>'Plot', -command=>\&init)
        ->pack(-side=>'left');
    
  2. or download this
    my $computator = Computator->new($p, $mw, whatever ...);
    $computator->reset();
    ...
    # create a stop-button
    my $stop = $mw->Button(-text=>'Stop', -command=>sub { $computator->sto
    +p()})
        ->pack(-side=>'left');