0
votes
1answer
32 views

Python Tkinter Double Scrollbar

I am trying to display a bunch of labels ( very long labels) with a scrollbar frame. For some reasons, I need to set the width and height of each label to a fix value. But in that case, when the ...
0
votes
2answers
46 views

Fit Tkinter Scrollbar to Text Widget

I'm new to using tkinter. I was able to get the scrollbar to work with a text widget, but for some reason it isn't stretching to fix the text box. Does anyone know of any way to change the height of ...
2
votes
2answers
259 views

Python Tkinter scrollbar for frame

My objective is to add a vertical scroll bar to a frame which has several labels in it.The scroll bar should automatically enabled as soon as the labels inside the frame exceed the height of the ...
0
votes
1answer
79 views

How to sync the scrollbars of two grids in wx

One custom wx.frame is created to contain a splitter window with two grid controls inside. It's used to compare the data in each of the grid. At this point the scrollbar of two grids need to support ...
1
vote
2answers
150 views

How to insert a scrollbar and a form in a notebook widget with python and tkinter?

I am really new to python and currently I am trying to design a form using tkinter. I am stuck trying to insert an scrollbar and a form in a notebook since I haven't found an answer to my question, ...
2
votes
1answer
64 views

Make a scrollbar on Tkinter

I need a scrollbar to roll under the elements, see that when create more than 30 elements from first window the screen dont fill in correct mode: import numpy as np import matplotlib.pyplot as plt ...
0
votes
1answer
55 views

Python tk scrollbar becomes inactive once text is outside the screen

Whenever I'm filling the box with text, horizontal scrollbar work fine until the text is seen on the screen. However if the number of lines is greater than can be seen on the screen and I scroll ...
0
votes
2answers
165 views

Tkinter Scrollbar in frame with multiple textframes

Question How can I have a scrollbar which moves an entire Tkinter frame? Note: I am using Python 2.7.3. Code and Explanation I have this code for defining the scrollbar scrollbar = ...
0
votes
1answer
94 views

Tkinter Python managing scrollbar inside the listbox in a canvas

I got the code below which contain a listbox inside a canvas, I'm trying to place the scrollbar only inside the listbox but what I've got is the scrollbar always set on the whole form. Can you pls ...
0
votes
0answers
60 views

how to add a scrollbar to a grid of listbox?

I'm quite new to tkinter and programming in general. I'm trying to add a scrollbar with tkinter which scrolls more listboxes together. I tried to embed them in a canvas or in a frame and thern try to ...
0
votes
0answers
81 views

How to add a scrollbar to the Tkinter textbox widget

I have recently re-visited one of my older GUI projects, and have decided that its text widgets need a vertical scroll-bar as the output is often quite long. I have been unable to find this on my own ...
1
vote
1answer
162 views

TkTable insert rows python

Hi I am trying to create a table using Tktable and the wrapper i found online : http://tkinter.unpythonic.net/wiki/TkTableWrapper I am having trouble understanding how to add rows. I have been ...
0
votes
0answers
74 views

Python inherit from tk.Frame with internal Layout and Scrollbars

I have worked with the AutoScrollbar (http://effbot.org/zone/tkinter-autoscrollbar.htm), and added a horizontal one too. from Tkconstants import VERTICAL, N, S, HORIZONTAL, W, E, END import Tkinter ...
1
vote
1answer
48 views

Tkinter: Scrollbar on root instead of another window

I have a small question. When I apply scrollbar to my Listbox, the scrollbar shows on the right side of the root window instead of the subwindow. Here's my code. I found i t somewhere on the internet ...
2
votes
1answer
66 views

wxPython wxScrolledWindow functions raising TypeError

I'm trying to learn how to use the wxPython wxScrolledWindow class for a project, and I've run into a wall. I've set up a program that makes a panel derived from the wxScrolledWindow class containing ...
1
vote
1answer
110 views

PyQt: Put scrollbars in this

Here's my class: class ChildFoundDlg(QDialog): #__init__ function: def __init__(self, parent=None): QtGui.QDialog.__init__(self, parent) self.resize(500, 270) ...
1
vote
2answers
551 views

Scrollbar in Tkinter grid [duplicate]

Possible Duplicate: Adding a scrollbar to a grid of widgets in Tkinter On my project, i want do display my results in a window, using Tkinter as GUI. I place them in a kind of table, using ...
1
vote
0answers
611 views

Using ttk.Treeview, how can I get horizontal scrolling to work as expected?

Using this Python script, which is my first attempt to learn how ttk.Treeview works (the extra copy of autoscroll is just to split the horizontal and vertical callbacks): import Tkinter as tk import ...
2
votes
2answers
288 views

PyQt4: Scrollbar doesn't show in scrollarea when resizing dockWidget

I created a python test program (Test_InfoPanel.py) that has MainWindow with dockWidget, and within it, a tabWidget with scrollArea widget. However, when I resize the MainWindow, the vertical ...
1
vote
1answer
186 views

The horizontal scrollbar didn't work in Tkinter

I want to create a GUI program base on Tkinter.One of the widgets is Text.I want to add a horizontal scrollbar in it,but it didn't work.Where I make a mistake,could you help me please. from Tkinter ...
0
votes
1answer
197 views

Python Tkinter xscrollbar not working

I'm almost at the point of tearing my hair out over this one: I'm trying to get an xscrollbar and yscrollbar working so that I can move around a large canvas in Tkinter. The reason I'm so frustrated ...
3
votes
1answer
420 views

Python, Tkinter: How to get coordinates on scrollable canvas

I have a Tkinter canvas with a scrollbar, and some items that when I click them, it's supposed to return the coordinates. (Using Python.) This works fine with the objects that's initially visible in ...
0
votes
2answers
345 views

Python tkinter scrollbar doesn't attached well to listbox

SO, I am doing what everyone else says: scrollbar = Scrollbar(frame) scrollbar.pack(side=RIGHT, fill=Y) listbox = Listbox(frame, yscrollcommand=scrollbar.set) listbox.pack() ...
2
votes
2answers
788 views

scrollable listbox within a grid using tkinter

I'm new to this place and tkinter. I am stuck at making a scrollable listbox or canvas. I have tried both widgets. Within this listbox or canvas, I have several entry and label widgets. The origin ...
2
votes
1answer
262 views

Problems with canvas size when implementing a scrollbar with Tkinter

I have been having trouble keeping the canvas/window from just expanding to the size of the information I am putting in the widget. I want to add scrollbars and limit the size of the canvas. This is ...
0
votes
1answer
183 views

Python EasyGUI: How to get a scroll bar inside multienterbox

I want to have a simple gui program to edit a python dictionary, so naturally EasyGUI is my first choice. My problem is that my dictionary is long, {key1:v1,key2:v2,...,keyn:vn}, and when I enter the ...
0
votes
1answer
110 views

Scrollbar in easygui?

Is there any way of getting a scroll bar using the easygui module or a modified version of it? I found a file online called thinking_py.txt, and, after converting it to python format, found that it ...
1
vote
1answer
2k views

Vertical and Horizontal Scrollbars on Tkinter Widget

I am trying to output the contents of a database to a Tkinter widget. The database has enough rows and columns to where I need to have both horizontal and vertical scrollbars enabled, but I am having ...
0
votes
2answers
704 views

Creating a mouse scroll event using python

I found this, Controlling mouse with Python, question really helpful in creating a script to move the mouse and click the mouse using Python. Is it possible to create a mouse scroll event also? ...
0
votes
1answer
167 views

Setting scrollbar size

I'm new in Python, and I have (maybe) easy question, dealing with scrollbars. I've built a prog which allows me to change my plot by moving the frequency using a scroll. But, it will be useful to have ...
3
votes
3answers
3k views

Python Tkinter Text Widget with Auto & Custom Scroll

I wrote a simple Tkinter based Python application that reads text from a serial connection and adds it to the window, specifically a text widged. After a lot of tweaks and some very strange ...
0
votes
1answer
123 views

Python keep scrollbar at end point

So when assigning Scrollbars to Listboxes, if you later on insert new lines, the scroll thumb does not "update". I want the scroll thumb to be set to the bottom of my vertical scrollbar everytime i ...
6
votes
1answer
3k views

python and tkinter: using scrollbars on a canvas

I've been searching around the web and I can't seem to figure this one out. I'm fairly new to tkinter, but figured this has a simple solution that's just eluding me. I'm trying to make a canvas ...
1
vote
1answer
528 views

How do you create a LabelFrame with a scrollbar in Tkinter?

I'm using Python and Tkinter to create a GUI for a program I'm writing, and I'm having a couple of problems. I have three objects descended from LabelFrame in an object descended from Frame. One of ...
0
votes
1answer
309 views

Python making gtk.Layout with Scrollbars

How could I have a scrollbar inside a gtk.Layout. For example, in my code I have: import pygtk pygtk.require('2.0') import gtk class ScrolledWindowExample: def __init__(self): ...
0
votes
1answer
459 views

ScrolledText Scrollbar Color (Python Tkinter)

I'm using the module ScrolledText in a Tkinter GUI. I wish to change the colour of the Scrollbar encompassed in the ScrolledText widget, but I'm having some difficulty. My syntax is correct ...
0
votes
1answer
2k views

python tkinter scrollbar and text widget issues

I'm trying to get two text boxes that each have scrollbars. When I try this however: from Tkinter import * root = Tk() s_start = Scrollbar(root) t_start = Text(root, width=50, height=10) ...
0
votes
1answer
653 views

Configuring a custom scrollbar in PyQt

I am building a GUI for image processing in PyQt. One task that I need to be able to do is use a scrollbar to move through a directory of image files. Specifically, if there are 1000 images, say, in ...
2
votes
1answer
749 views

Scrollbars for a .jpg image on a Tkinter Canvas in Python

I'm trying to make a jpeg on a canvas scrollable but I can't seem to get my scrollbars to work. Here's some example code: from Tkinter import * import Image, ImageTk root = Tk() frame = Frame(root, ...
2
votes
2answers
2k views

(Python Tkinter) Stop Text widget from scrolling when content is changed

I have a text widget with a scrollbar which looks something like this: self.myWidget = Text(root) self.myWidget.configure(state=DISABLED) self.myWidget.pack() self.myWidgetScrollbar = ...
3
votes
1answer
3k views

Python tk scroll frame?

I'm creating a simple GUI app using Tkinter with Python, but I'm having problems adding a scrollbar to a single frame. The frame is visible from top to bottom on my 20" but in order to display ...
0
votes
1answer
189 views

IconView with one scrollbar

Good day! I need an IconView widget with vertical (only) scrollbar. I put my IconView into ScrolledWindow and turned off the horizontal scrollbar. This way: liststore = gtk.ListStore(gtk.gdk.Pixbuf) ...
2
votes
3answers
3k views

Scrolling multiple Tkinter listboxes together

I have multiple Tkinter listboxes that I have scrolling together using a single scrollbar, but I'd ALSO like them to scroll together for mousewheel activity over any of the listboxes. How to do ...
2
votes
2answers
3k views

[python]How to add Auto-scroll on insert in Tkinter Listbox?

I'm using a listbox (with scrollbar) for logging: self.listbox_log = Tkinter.Listbox(root, height = 5, width = 0,) self.scrollbar_log = Tkinter.Scrollbar(root,) ...
1
vote
2answers
2k views

python Qt: main widget scroll bar

We are trying to put scrollbar on the main widget, so if the user resizes the main window, the scrollbar appears, and let he move up and down to see child widgets that is outside the smaller window ...
3
votes
2answers
5k views

How could I get a Frame with a scrollbar in Python's Tkinter?

I'm starting to learn about Tkinter. I'd like to have a container widget ( Frame ), where the user could add as many textfields as needed by the application. The application starts with a textfield, ...
1
vote
1answer
957 views

scrollbar for statictext in wxpython?

is possible to add a scrollbar to a statictext in wxpython? the thing is that i'm creating this statictext: self.staticText1 = wx.StaticText(id=wxID_FRAME1STATICTEXT1,label=u'some text ...
1
vote
1answer
686 views

wxPython: Making a scrollable DC

I am drawing inside a wx.Window using a PaintDC. I am drawing circles and stuff like that into that window. Problem is, sometimes the circles go outside the scope of the window. I want a scrollbar to ...