PilotinControl has asked for the wisdom of the Perl Monks concerning the following question:
Morning Greetings Brother Monks, Today's question is as follow: I have two levels of sub menus and now I've created a third level of submenus. I have no problems going from submenu one back to the Toplevel menu or going from submenu two back to submenu one it is when submenu three goes back to submenu two is the issue. Yes I do use "strict, warnings and diagnostics" at the beginning of my code. Code and Error posted below thanks in advance!
sub addmanifest { my $perInfo9 = {NAME => '', TOWNS => '', TRAILER => ''}; my $addmn = $mw->Toplevel(); $addmn->group($mw); $addmn->resizable(0,0); # Create the main window $addmn->configure(-title=>'Add Manifest'); $addmn->geometry('285x270+0+0'); my $personInfo9 = $addtmn->Frame()->pack(-side=>'top',-fill=>'x'); my $personLeft9 = $personInfo9->Frame()->pack(-side=>'left',-fill=>' +x'); my $personRight9 = $personInfo9->Frame()->pack(-side=>'left',-fill=>' +x',-padx=>20,-pady=>20); $personLeft9->Label(-text=>'Manifest Information')->pack(); $personLeft9->Label(-text=>'')->pack(); $personLeft9->Label(-text=>'Manifest Name')->pack(); $personLeft9->Label(-text=>'Manifest Towns')->pack(); $personLeft9->Label(-text=>'Manifest Trailer')->pack(); $personRight9->Label(-text=>'')->pack(); $personRight9->Label(-text=>'')->pack(); $personRight9->Entry(-width=>20,-borderwidth=>2, -relief=>'sunken',-textvariable=>\$perInfo9->{NAME})->pack(); $personRight9->Entry(-width=>20,-borderwidth=>2, -relief=>'sunken',-textvariable=>\$perInfo9->{TOWNS})->pack(); $personRight9->Entry(-width=>20,-borderwidth=>2, -relief=>'sunken',-textvariable=>\$perInfo9->{TRAILER})->pack(); my $saveFrame9 = $addmn->Frame()->pack(-side=>'top',-fill=>'x'); $saveFrame9->Button(-text => 'Add Manifest', -command => sub { open(OUT,">>DATA/manifestdata.txt"); print OUT "" . $perInfo9->{NAME} . ":"; print OUT "" . $perInfo9->{TOWNS} . ":"; print OUT "" . $perInfo9->{TRAILER} . "\n"; close(OUT); sleep 2; $addmn->withdraw; $mm->deiconify; # THIS IS SUB MENU TWO IT HAS TO BE SUBMENU THREE HOW +EVER THE BELOW ERROR OCCURS when $mm is used, I have to use $opsm in +order for it to work correctly } )->grid(-row, 2, -column, 0, -sticky => 'nesw'); $balloon->attach($saveFrame9, -balloonmsg => "Return To Add Manifest") +; } # END __ERROR__ Tk::Error: Can't call method "deiconify" on an undefined value at C:\U +SER\PERL\PROGRAM\test-gui.pl line 3995. Tk callback for .toplevel3.frame1.button Tk::__ANON__ at C:/Perl/site/lib/Tk.pm line 250 Tk::Button::Invoke at C:/Perl/site/lib/Tk/Button.pm line 200 <Key-Return> (command bound to event)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: TK Submenus
by hdb (Monsignor) on Oct 28, 2013 at 14:33 UTC | |
by PilotinControl (Pilgrim) on Oct 28, 2013 at 15:54 UTC | |
by hdb (Monsignor) on Oct 28, 2013 at 15:59 UTC | |
by PilotinControl (Pilgrim) on Oct 28, 2013 at 16:20 UTC | |
by hdb (Monsignor) on Oct 28, 2013 at 18:00 UTC | |
| |
|
Re: TK Submenus (Tk::Menu , global variables/ spirit of strict)
by Anonymous Monk on Oct 29, 2013 at 00:53 UTC |