Tagged Questions
0
votes
1answer
37 views
Tkinter: Listbox please behave yourself
import Tkinter
def selector():
...
selections_scroller = Tkinter.Scale(b_action, from_=0, to=len(ymls))
...
pos = int(selection.curselection()[0])
loaded = ymls[pos]
...
0
votes
1answer
51 views
Tkinter: Making a listbox that can change variables on selection
Now I made a procedure that activates on the click of a button. Now say I have a listbox called:
selection = Tkinter.Listbox(b_action)
selection.insert(1,"stuff")
selection.insert(2,"morestuff")
a = ...
0
votes
2answers
84 views
How to fit Tkinter listbox to contents
I am writing a program to run batch files for various servers and so far everything is going fine. I mean the programs works and uses a simple GUI and all is well. Apart from when I give it a slightly ...
2
votes
1answer
64 views
Python tkinter difference between spinbox and optionmenu
I was just wondering what the difference between a spin box and option menu is?
They both seem to be a drop down list displaying different options.
I'm a beginner in programming, so will appreciate ...
1
vote
1answer
99 views
Tkinter how to see if a widget exists in Tkinter
Now, I know that you can check to see if a window exists by:
x.winfo_exists()
Which returns a Boolean. Now I have searched but haven't been able to find exactly what I need. More specifically I ...
0
votes
1answer
74 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
56 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 ...
1
vote
1answer
131 views
tkinter Listbox item binding
I'm trying to show a context menu when an item in a Listbox widget is right clicked.
The problem is that if a bind to the listbox, the whole Listbox will be active for send the event and it doesn't ...
2
votes
1answer
116 views
Cant add image to Tkinter Listbox
I'm trying to add an image to a Listbox, but instead of the image I see an entry called "pyimage1" in the Listbox. I've successfully displayed images using the Text and Label widgets, but I can't ...
1
vote
1answer
163 views
Python / Tkinter listbox troubles
I posted a question here and I was advised to restructure the code. It's now different enough that I feel it justifies asking a new question.
Anyway, I'm trying to add drag/drop functionality to a ...
0
votes
2answers
303 views
python tkinter listbox event binding
I'm having trouble getting an event binding to work with python/tkinter. I'm simply trying to click and have the location printed, but every time I do this, "-1" is the result.
Here's my code
from ...
1
vote
1answer
115 views
tkinter listbox drag and drop with python
Can anyone point me to where I can find info on making a listbox with the ability to drag and drop items for re-arranging? I've found some related to Perl, but I know nothing of that language and I'm ...
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
2answers
548 views
Python TKinter dropdown menu issue
In the below code I am having trouble with the line self.dmenu1.bind("<Button-1>", self.branches), and I'd be really grateful if someone can please set me in the right direction.
I'm expecting ...
0
votes
2answers
216 views
Problems in Python getting multiple selections from Tkinter listbox
This is the same problem I posed earlier today and which a couple of you tried to help me with, but I can't get it to work. All I want to do is to populate "ichose" with the multiple selections I make ...
0
votes
2answers
116 views
How do I read what's been selected in a MULTIPLE listbox
I'm very new to Python and can't get my head round how to capture just ONE item that's been selected from a listbox, let alone more than one. I particularly don't understand WHEN the items I select ...
1
vote
1answer
103 views
changing order of items in tkinter listbox
Is there an easier way to change the order of items in a tkinter listbox than deleting the values for specific key, then re-entering new info?
For example, I want to be able to re-arrange items in a ...
0
votes
1answer
242 views
Adding items from one listbox to another with tkinter
As the title implies I'm trying to select items from one list box, press a button, and add it to a second list box.
When I click the button to move, the value is printed in command prompt, but the ...
0
votes
1answer
93 views
wxPython update a listbox live
I am developing a programme using python & wxPython. I have a listbox, and I need for it to be updated live to be used as a log.
I have done this simply with the Append() function, but the text ...
0
votes
1answer
180 views
Python Tkinter: Listbox drag selection
I am having problems with the way that the right button gets its selection. I am not good with coordinates so i dont know how to reverse the way i am selecting. I would like to scroll the listbox ...
0
votes
1answer
285 views
How to configure Tkinter Listbox to disable state keeping selected item highlighted
I am having a problem configuring a listbox widget such that the selection remains highlighted even while it is set (programmatically) to the DISABLED state. Below code shows the problem:
from ...
1
vote
1answer
299 views
Python Tkinter:When string with space inserted into Listbox, brackets appear
For some reason in the listbox there seems to be brackets around a string that ends with a space.
from Tkinter import *
def update_listbox():
for i in dic:
listbox.insert(END, (i, ...
1
vote
1answer
265 views
Python Tkinter Listbox Unbind the Default Selection
I find this feature of automatic selection to item index 0 in the Listbox a nuisance. In my script, I have 3 listboxes called lb1,lb2 and lb3. If user selects any items on lb2 or lb3, I intend to pop ...
1
vote
1answer
419 views
How to complete enable / disable a TkInter listbox in Python
How can I simply disable a TkInter Listbox? It seems such a straightforward thing to do and possibly it is. In the simple example below, I've got a button which should toggle the state of the listbox ...
0
votes
2answers
317 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
134 views
Hidden id on tkInter Listbox
I'm wondering if it's possible to somehow store a hidden id along with each entry on a Listbox. The reason for this is that I've got a table which contains a unique id which is from a database (not ...
0
votes
1answer
563 views
Python - GUI - Tkinter listboxes
i am having trouble loading one of my text files into my GUI. I have a load function(on the menubar), and have created a listbox.
The code for the loading the menu and the listbox:
class ...
0
votes
1answer
210 views
Getting Tkinter listbox item when hit Button-1
After creating a simple window/widget layout with Page (page.sourceforge.net)
I found that the listbox curselection() call returns the proper index when releasing Button-1.
When hit, it returns the ...
0
votes
1answer
94 views
Python Tkinter generating a random 'password' for each entry in a list box?
I am trying to create a password generator that creates a new password for each individual line in a listbox, i have a listbox populated with names, im trying to get a loop that will count how many ...
1
vote
1answer
139 views
How to scroll to a selected item in a ScrolledListBox in python?
I am developing an application that displays a large database of items.
There is also a search bar allowing the user to search that database rather than scrolling through each item to find the one ...
0
votes
1answer
121 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 ...
-2
votes
2answers
572 views
Using global variables in Python
I am using Tkinter to help me build a FTP client, in this client I am trying to get the selected information from a tk listbox. So I have a button that starts the download but what ever the reason is ...
0
votes
2answers
317 views
Separating Words in a List Tkinter Listbox Python
In my source code for a project I am running I have a process that produces a list of strings. I am trying to put this list into a Tkinter listbox for easy sorting, but when I do the list is all ...
0
votes
1answer
2k views
Tkinter Listbox
I want to execute function with one click on listbox. This is my idea:
from Tkinter import *
import Tkinter
def immediately():
print Lb1.curselection()
top = Tk()
Lb1 = Listbox(top)
...
0
votes
0answers
140 views
Change Listbox items based on selection in another Listbox
I am trying to dynamically change the entries in a Listbox (lb_ledgers) depending on the selection in another Listbox (lb_book). I currently have the following lines of code:
...
0
votes
0answers
220 views
TkTreectrl , sqlite3 and python
I have some trouble with TkTreectrl.
Here is my code:
import sqlite3
import TkTreectrl
def take():
a = listbox.get('active') #2
print a
root = Tkinter.Tk()
listbox = ...
0
votes
1answer
2k views
Get selected item in listbox and call another function storing the selected for it
I have a canvas that calls createCategoryMeny(x) when it is clicked.
This function just creates a Toplevel() window,
def createCategoryMenu(tableNumber):
##Not interesting below:
...
0
votes
1answer
436 views
interact with special combobox using selenium webdriver
I'm using selenium2 webdriver with firefox.
Usually, when there is a combobox for e.g. months I set a distinct month by send_keys(monthname).
I have a special listbox this time, where I can't simply ...
1
vote
1answer
916 views
Python Tkinter Listbox: fire off a function on change?
My problem is: when I click an option in a Listbox, I want a third party Text [area] to be updated with information based on the Listboxs selection. As far as I can tell though I can't see a way to ...
0
votes
1answer
123 views
Horizontally oriented listbox using Python and Tkinter
I want to provide a listbox where the user can select (multiple) characters (usually close to 15). Quite often some of these will be sequenced, so a listbox is easier than a validated text entry ...
2
votes
1answer
456 views
Expandable List using Python Tkinter
I know how to create a Listbox using Tkinter but this only allows me to display a list of single items. I need to create a expandable list that allows the user to hit something along the lines of a + ...
0
votes
1answer
356 views
Inserting a button into a tkinter listbox on python?
...
self.myListbox=tkinter.Listbox()
self.myListbox.pack()
self.myButton=tkinter.Button(self.myListbox,text="Press")
self.myListbox.insert(1,myButton.pack())
...
I want to insert a button into ...
1
vote
0answers
212 views
Extracting individual listbox from multi listbox class
We have probably all seen this custom multi listbox before...
http://tkinter.unpythonic.net/wiki/SortableTable
I was hoping that someone could tell me how to internally (inside the class) get direct ...
1
vote
1answer
524 views
Python tkInter: Is it possible to colour a specific element in a list box
I'm referring to a specific element in the list box. Colouring the background is most desired but any form of colouring for a specific cell would be fantastic.
4
votes
2answers
3k views
Display ListBox with Columns using Tkinter?
I"m trying to create a ListBox in Tkinter that has columns. I'm returning from a DB query records and would like to display each entry in it's own column for each record. Looking at ListBox, I feel ...
1
vote
2answers
784 views
Tkinter Listbox not deleting items correctly
I have a method that is suppose to take a search parameter and remove everything from the list that does not meet the parameter. But when it runs it removes list items at almost random. I've debugged ...
0
votes
1answer
242 views
Variable updating one step behind in list searcher in Tkinter
I'm trying to build a search engine that will check a list and then remove all list items that do not meet the search parameters. I know there is several problems with my program such as it will not ...
0
votes
0answers
215 views
Windows.forms.listbox: TopIndex not working ??? (Python)
I have this code:
nIndex = 0
for x in range(len(aList)):
self.list.Items.Add(aList[x][0])
if StartPub[0] == aList[x][3]:
nIndex = x
if nIndex > 0:
self.list.SelectedIndex = ...
0
votes
0answers
220 views
Python - ListBox from system.windows.forms
I'm sort of newbie in Python. I am writing a script for ComicRack and cannot use any lib like tkinter or else. I need to use the straight code, can use some import, but all is limited.
I am trying to ...
6
votes
1answer
2k views
Python Tkinter: resize Listbox widget when window resizes
I'm new to tkinter and I've got a listbox widget that I'd like to automatically-resize when changing the main window's size -- essentially have the listbox have a fluid height / width. If someone can ...
