0
votes
3answers
27 views

Tkinter: String variables not working

I have made a program for science which asks you a symbol of n element and you must type in the element but the problem is that it can't tell if you got the answer wrong it just keeps saying CORRECT!, ...
0
votes
2answers
31 views

Set the same width to an entry and text tkinter label

I would like to put an entry and a text label one under the other and with the same width. Here is my code : from tkinter import * root = Tk() title = StringVar() title_entry = Entry(root, ...
0
votes
2answers
50 views

Why is Tkinter missing?

Started messing with Tkinter today, but when I tried to run my first program it crashed. It appears the reason is that I don't have Tkinter. This is a standard installation of Python 3.3 on Windows 7, ...
0
votes
1answer
28 views

tkinter messagebox askyesno starnge response

As per request by Bryan Oakley,fuller code pertaining to my question testerday ( don't know how to do this without another question) #!/usr/local/bin/python3 # -*- coding: utf-8 -*- ...
0
votes
1answer
21 views

Insert a .jpg in a canvas with tkinter and Python 3.2

So I want to put a .jpg in a canvas, all i found on internet is to use PIL but i'm using Python 3.2 so PIL doesn't work. What can i do to insert a .jpg in a canvas with Python 3.2 ?
0
votes
1answer
23 views

tkinter askyesno message box behaviour

messagebox.askyesno(0.0,'"{0}"{1} \n {2}\n'.format(search_analyte.get(),' is not in the database.','Add,if appropriate')) print (str(messagebox.askyesno())) if messagebox.askyesno() ...
0
votes
0answers
31 views

tkinter Progressbar update during while loop [duplicate]

How do you update a progressbar during a while loop? #ProgressBar root = Tk() root.withdraw() progressbar = ttk.Progressbar(root, length=100) progressbar.grid() root.after(100, root.deiconify) ...
1
vote
1answer
22 views

tkinter messagebox link to notebook page

referwork = ttk.Notebook(root, style =".TNotebook") f1 = ttk.Frame(referwork) f2 = ttk.Frame(referwork) referwork.add(f1, text="Search", padding = 1) referwork.add(f2, text="Add/Delete", padding = 1) ...
1
vote
1answer
58 views

Progressbar (ttk.Progressbar) with python in tkinter not showing

Using the ttk.Progressbar in Python (in a tkinter GUI), I'm trying to have a progressbar appear when I press a button. Clicking the "Analyse" button on the gui calls the function analyze in the ...
0
votes
1answer
25 views

Filedialogue error in Tkinter

Question about Tkinter : I want to basically create a browse along with a text display which will display the file that I pick from the browse button. Following is my code : Edit 1. button_opt = ...
0
votes
1answer
33 views

How to update Ttk.Progressbar in Python?

I have a siplme GUI that performs a few time-consuming operations. I would like to make a progressbar that would update after each of this operations. However it seems impossible to be done. No ...
0
votes
1answer
24 views

Making Tkinter Photoimage crashes python program

I'm writing a minesweeper game using tkinter, and everything appears to function alright, but python crashes every time after a number of clicks, and I believe it is because I've added images for the ...
0
votes
1answer
27 views

How to prevent ttk.Treeview item from opening when double clicked

I want to use ttk.Treeview widget as an element of GUI. However I need to change its default behavior. How can I prevent expanding children of the parent item when it is double clicked. It should be ...
0
votes
1answer
37 views

textvariables in Tkinter for Python 3

I'm using a tkinter Entry widget in a temporary window to collect information from a user. I want to be able to use that information for a variety of things: rewrite it in a Label in another window, ...
0
votes
1answer
31 views

write a StringVar in python 3

I've got a lot of experience with basic programming, but none with GUI programming, and I am teaching myself Python 3 with tkinter for that purpose. I've got some great answers by checking ...
0
votes
1answer
35 views

Use a variable to choose a dictionary to search in Python 3 and Tkinter?

I have got some customers, e.g. customer1. And I have stored their data in a dictionary like this: customer1 = {"Age": 20, "Gender": "Male",} I want to have a Tkinter entry box and a text variable ...
0
votes
1answer
59 views

How to change ttk.Treeview column width and weight in Python 3.3

I have created a GUI for my application with Tkinter. I am using also a treeview widget. However I am unable to change its column widths and weights. How to do it properly? Sample: tree = ...
0
votes
1answer
33 views

Tkinter Button with an If statement

this is my first python program, and i think i have the if statement correct, i may or may not, i dont know. What i want to do is, when a Tkinter button is clicked, I want the function which is ...
1
vote
1answer
25 views

Curly brackets when using clipboard_append

So I was writing a program that converts MM to inches, RA surface finishes to MM, and can also convert tolerances for dimensions from MM to inches. This is actually my first project I took on in ...
0
votes
1answer
73 views

Placing a crossword puzzle into a tkiner in python 3.2

I managed to write code (through a tutorial) that runs for a simple crossword puzzle. I'm pretty new at Python so I mistakenly used some code from 2.7 and some from 3.2 I think I managed to fix ...
0
votes
1answer
23 views

How to use TkInter fill or expand functions with self?

I have a very simple program with TkInter in Python. How to I use the "fill" or "expand" options with the following code? from Tkinter import * class Application(Frame): def sayhello(self): ...
0
votes
1answer
20 views

Invisible button (using pack_forget) still occupies space

I use pack_forget() to make a button invisible. But when i subsequently create a label, it appears bellow the invisible button. How can i avoid this displacement? The following sample code ...
1
vote
0answers
35 views

using tkinter for GUI

How would I go about wrapping this text in a GUI? I am fairly new to python and programming in general and well I wrote this converter as a first project. I now want to wrap the project in a GUI but ...
-1
votes
1answer
60 views

Python dictionary add/delete items in tkinter versus non-GUI

I am trying to implement a primitive dictionary to look up acronyms that we use in the laboratory. The dictionary is in the format: {'REN': 'plasma renin', 'PROP': 'procollagen III', 'IMETAB': ...
0
votes
1answer
30 views

Appending to clipboard

I feel like I have been asking a lot of questions the last couple days but I really need help with this one. First of its my 3rd day writing code and python is the language of choice that I chose to ...
1
vote
2answers
61 views

Change words on tkinter Messagebox buttons

I'm using tkinter's "askokcancel" message box to warn the user, with a pop-up, of an irreversible action. from tkinter import Tk Tk().withdraw() from tkinter.messagebox import askokcancel ...
0
votes
1answer
35 views

how to use a variable with a GUI in python 3

I'm trying to get this so when you press 'HELLO' five time the text turn red just its not adding any thing on when i add anything to the viable.this is the code. from tkinter import * class ...
0
votes
0answers
29 views

Python modules not working after update to 3.3.1

I upgraded my python from 3.2.3 to 3.3.1, and modules previously installed no longer work such as tkinter, I have the latest version of tkinter installed. I believe the problem is to do with ...
1
vote
1answer
28 views

Python event binding with tkinter

So guys I'm new to GUIs in Python and I've been trying to understand the envents process, here's my code, and the intention that whenever I press the 'a' key it should print "key pressed'. But it ...
-1
votes
3answers
103 views

tkinter listbox insert error “invalid command name ”.50054760.50055432"

I have a database of objects and you can view the items in the database in a listbox and there's a button to remove an item and to create an item. Creating an item opens a dialog window for the item ...
1
vote
1answer
59 views

tkinter - how to open multiple filedialogs?

in python's default editor, IDLE, it is possible to have multiple 'Open' dialogs opened at the same time. I'm looking at their source, but I can't find where I can have this behavior replicated. from ...
0
votes
1answer
35 views

Tkinter Canvas is empty

I took this code from the first example here http://zetcode.com/gui/tkinter/drawing/ I refit it so that it would print a map in the same file. There are no inherent errors, and it goes through the ...
1
vote
0answers
57 views

Tkinter instantiation fails in Python 3.3.1 on OS X 10.8

I was trying to start my new project with Tkinter in Python 3.3.1. So I installed ActiveTcl 8.5.13, as that seems to be required. Now I run this simple test script; import sys from tkinter import * ...
1
vote
1answer
54 views

tkinter python maximize window

I want to initialize a window as maximized, but I can't find out how to do it. I'm using python 3.3 and Tkinter 8.6 on windows 7. I guess the answer is just here: ...
-1
votes
1answer
64 views

Python logic assitance branching from main algorithm [closed]

I am having some issues with some Python code, which is down to my logic. I have a main function which is called via a button click within the UI, within this function depended on the result of the ...
0
votes
1answer
43 views

tkinter report frame as well as mouse coordinates

def mouse_click(event): #'reports' to both terminal and results text box parent_name = Frame.winfo_parent(root) parent = Frame._nametowidget(parent_name) result = ("{0}: {1},{2}\n ...
2
votes
1answer
70 views

tkinter textbox resizes instead of wrapping text to fill box

def red(): frame3.output_display.config(fg = 'red', font=root.customFont1) def blue(): frame3.output_display.config(fg = 'darkblue', font=root.customFont2) def green(): ...
0
votes
3answers
107 views

simple graphics for python

I am making a simulation in python that needs visualization. I am looking for the most simple graphics library python has. Is there anything that can let me do something along the lines of: ...
0
votes
1answer
22 views

Python validate and validateommand issues with ttk entry widget

I am trying to restrict numbers being entered into a entry widget, so that it must be 4 integers long, between the values 0000 to 9999, effectivetly a 4 digit pin number. This class works fine, ...
1
vote
0answers
69 views

Destroying tkinter figures with keyboard interrupt in a embedded c++ python editor

I am addind a python editor to a C++ application. In order to be able to stop the python process when the user presses ctrl-c, I have 2 threads: 1- the first one runs the python string; 2- the ...
0
votes
2answers
56 views

Python 3.3 (tkinter): Value does not change

First problem is that when i click '+ $16' button it doesn't show the increase, although you can see it after closing the window and typing money into Python Shell. Second problem is that after I ...
0
votes
1answer
15 views

Python Tkinter Entry Feild Value Comparison Problems

I am trying to develop a program that a user enters in some text then press submit and it would take the text in the entry field and compare it to another value. root=Tk() win1=Frame(root) ...
0
votes
1answer
60 views

get rid of global variable in python3

First of all I'm using python 3.3 & 3.2 on windows and Linux respectively. I am starting to build an rpn calculator. It looks like cross-platform key listeners is a kind of holy grail for ...
0
votes
2answers
68 views

callback functions associated with tkinter traces in Python3

I raise this question because I just saw this question What are the limitations of callback functions associated with Tkinter traces?. And I use lambda to add another arguemnt. Here is the code: ...
0
votes
1answer
52 views

Python advice using delays with tkinter

I have created GUI using tkinter, which will run on the RaspberryPi and will perform various actions such as lighting LEDs. The problem I have is toggling an LED on and off using the root.after ...
0
votes
0answers
40 views

Why does this fail in pyscripter?

This question started as a simple Python 3.x question but now I'm not sure what is going on. When I run the following code in a shell it works fine. When I run it in PyScripter the result is always ...
1
vote
1answer
107 views

Tkinter problems with GUI when entering while loop

I have a simple GUI which run various scripts from another python file, everything works fine until the GUI is running a function which includes a while loop, at which point the GUI seems to crash and ...
1
vote
1answer
26 views

How can I invoke a function from an imported module inside a class methode?

I am trying to make a small GUI program with tkinter. I need to use Python's subprocess.call() When I try to do so inside a class method I get following error: self.return_code = ...
0
votes
2answers
39 views

label widget not updating with 'after' method in Tkinter for-loop

I'm trying to update the text of and display a label inside of a for-loop in tkinter. This should happen after a second, according to the .after method. def rightString(self, gro, string): for z ...
1
vote
1answer
43 views

Tkinter dependancy on Tile for Mac OS X

Hi I'm getting the following error when using python3 on Mac OSX 5: Traceback (most recent call last): File "app.py", line 107, in <module> sv1 = ttk.Scrollbar(root, orient=VERTICAL, ...

1 2 3 4