Through much digging I found AddScrollbars was defined in Tk::Frame.. #!perl -w # Pchopler.pl use strict; use Tk 800.000; # These are all the modules that we are using in this script. use Tk::Frame; use Tk::TextUndo; use Tk::Text; use Tk::Scrollbar; use Tk::Menu; use Tk::Menubutton; use Tk::Adjuster; use Tk::DialogBox; use Net::FTP;
. . . # this is where things are failing.. # from the debug frame: #Can't locate Tk/AddScrollbars.pm in @INC (@INC contains c:/Perl/lib C:/Perl/site/lib) at C:/Perl/lib/Tk/Widget.pm line 261. #Tk::Widget::_AutoloadTkWidget('Tk::Frame=HASH(0x22f1734)','AddScrollbars') called at C:/Perl/llib/Tk/Widget.pm line 1118 #Tk::Widget::Scrolled('Tk::Frame=HASH(0x1d14000)','Text','-height',1,'-width ',1,'-scrollbars','osoe') called at pchopler.pl line 27 # line 27 v my($OutputText) = $rf->Scrolled('Text', -height => '1', -width => '1', -scrollbars => 'osoe', ); my($PegText) = $rf->Scrolled('TextUndo', -height => '1', -width => '1', -scrollbars => 'osoe', ); "Paul Kraus" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > No changes to the system? Perl upgrade? System reload? Anything at all > that you can remember? > > -----Original Message----- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Monday, June 02, 2003 9:39 AM > To: [EMAIL PROTECTED] > Subject: Error > > > Can't locate Tk/AddScrollbars.pm in @INC (@INC contains: C:/Perl/lib > C:/Perl/site/lib .) at C:/Perl/lib/Tk/Widget.pm line 261. > > > > I was using this perl script without problems, then all of the sudden I > am getting this error... I googled it and go nowhere.. any ideas? I > tried to re-install TK from ActiveState (version 5.8).. > > From what I gather, Widget.pm calls the method AddScrollbars but there > is no associated pm to that method.. is there some dll or something else > that needs to load for this to work? > > > > Thanks, Steve. > > > > > > -- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]