Help for this page

Select Code to Download


  1. or download this
    my @info;
    my $button_submit = $lf->Button(
        -text => 'Search',
        -command => [\&get_data, \@info],
    )->pack(qw//);
    
  2. or download this
    my @info;
    my $button_submit = $lf->Button(
        -text => 'Search',
    ...
        # call configure on the widget
        $tkwidget_ref->configure(...);
    }