in reply to Re^3: Perl Tk Scrollbar
in thread Perl Tk Scrollbar

What I am expecting to happen is when my data file reaches a certain viewing length the scroll bars will aide in viewing the data. To scroll up and down. I guess I am missing a length option? So far all the frame does is get larger when more data is being added instead of staying at a fixed height and width. Am I explaining it well enough to understand? Thanks.

Replies are listed 'Best First'.
Re^5: Perl Tk Scrollbar
by Anonymous Monk on Nov 27, 2013 at 03:20 UTC
    This is what the SYNOPSIS shows
    $whatever = $parent->Scrolled(Whatever ?,-scrollbars=>where? ?,...?);
    This is what you have
    $vall->Scrolled('Frame', -scrollbars => "ose",)->pack;
    You don't have $whatever, you create a frame, pack it, and ignore it, and you keep using the frames parent $vall

    If you want widgets in the scrolled frame, they have to be children of the scrolled frame