You may be interested in:

use strict; use warnings; use Tk; use Tk::NoteBook; my $obj = bless {}; # Light weight object makes passing stuff around e +asier $obj->{main} = MainWindow->new( ); $obj->{notes} = $obj->{main}->NoteBook()->pack(); $obj->{notes}->add ('Master', -label => 'master')->pack(); for my $key (qw'x y z') { $obj->{"but$key"} = $obj->{main}->Button ( -text => "Add Tab $key", -command => [\&addRemove_tab, $obj, $key], )->pack(); } MainLoop(); sub addRemove_tab { my ($self, $key) = @_; if (exists $self->{"note$key"}) { $self->{notes}->delete ($key); delete $self->{"note$key"}; $self->{"but$key"}->configure (-text => "Add Tab $key"); } else { $self->{"note$key"} = $self->{notes}->add ($key, -label => $ke +y)->pack(); $self->{"but$key"}->configure (-text => "Rem Tab $key"); } }

Perl is environmentally friendly - it saves trees

In reply to Re: Dynamic tab creation/destuction with Tk::Notebook by GrandFather
in thread Dynamic tab creation/destuction with Tk::Notebook by thefinn

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.