in reply to Tk::Notebook 'unkown tab'

Your my $args  = join(',', @grid); is stringifying everything inside @grid, including all the objects. The grid widgit manager expects a list of objects, not whatever comes out the the eval. I think you want: $$first -> grid (@grid), but it's hard to say something with substance of a code fragment that can't be run standalone.

Abigail

Replies are listed 'Best First'.
Re: Re: Tk::Notebook 'unkown tab'
by dimmesdale (Friar) on Jul 22, 2002 at 14:27 UTC
    fixed it... never mind.

    For the curious, I used a -text option, as I saw on the docs for notebook, however I saw someone else use -label, and upon changing it the code worked. Go figure