Skip to main content

All Questions

Tagged with
0 votes
1 answer
60 views

Python/Tkinker Combobox event not launching [duplicate]

I'm pulling my hair out and sure I'll be embarrassed by how simple my mistake is. I have created a Combobox which is supposed to launch a function each time is it selected. However nothing happens ...
Tom's user avatar
  • 1,043
1 vote
2 answers
587 views

Gaining access to events in tkinter between objects

In this sample python/tkinter script I have 3 classes. My first class SandBox sets up a notebook with two tabs, each tab is a separate class object. This script is not a real world script I'm ...
user1904898's user avatar
2 votes
2 answers
10k views

Event callback after a Tkinter Entry widget

From the first answer here: StackOverflow #6548837 I can call callback when the user is typing: from Tkinter import * def callback(sv): print sv.get() root = Tk() sv = StringVar() sv.trace("w"...
aless80's user avatar
  • 3,290
1 vote
2 answers
281 views

Callback and n Entry box widgets not functioning Tkinter

In the code below I need to return all values returned (but for each row separately) but I have tried lambda and failed and I'm not getting anywhere AGAIN. I also have the callback definition where ...
user2063's user avatar
  • 985