Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

Re: Perl TK Submit enter incorrect routine

by blm (Hermit)
on Nov 15, 2005 at 12:37 UTC ( [id://508584]=note: print w/replies, xml ) Need Help??


in reply to Perl TK Submit enter incorrect routine

Personally, debugging is just done by putting print statements in the code to test my assumptions. You have already done this. I would help you debug it but you would have to provide a runnable program that exhibits the undesirable behaviour. I tried to reproduce your bug with the code you have provided by doing the following

I copied

 show_amend_userorderroute()
removed the sub declaration, commented out the sql and put
use Tk; my $window = MainWindow->new();
at the beginning, changed
my $frame = $mainmenu->Toplevel(-title => 'Amend User',);
to
my $frame = $window->Toplevel(-title => 'Amend User',);
and put
MainLoop();

at the end. I get

Tk::Error: Undefined subroutine &main::process_amend_userorderroute called at C: \Documents and Settings\blm\Desktop\test2.pl line 37. Tk callback for .toplevel.button Tk::__ANON__ at C:/Perl/site/lib/Tk.pm line 247 Tk::Button::butUp at C:/Perl/site/lib/Tk/Button.pm line 111 <ButtonRelease-1> (command bound to event)

This means the program tried to run the desired routine and I was unsuccessful in reproducing your bug. (I didn't bother copying and pasting the process_amend_userorderroute to my test code)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://508584]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others surveying the Monastery: (6)
As of 2024-04-24 10:31 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found