Questions tagged as 'tkinter'

1
answer

How do I import image into Python with the Tkinter GUI? [closed]

Can you put image in the tkinter library widget?     
asked by 06.06.2017 / 02:21
1
answer

Opening a URL from Tkinter

Is it possible to link a site using Python code? For example, in a menu made in Tkinter (Object Orientation) I wanted to click the button and be redirected to a website.     
asked by 07.12.2018 / 15:24
1
answer

Python: Tkinter + SQLITE. Save records to database and clear field

I'm studying, on my own, SQlite, I've already bought some courses, but I need some help. Purpose: I would like to save the user-entered fields in the database and then clear the same fields to allow new data entries. The program is a wind...
asked by 20.11.2018 / 13:25
1
answer

How do I always when the Down key is pressed and win +10? (Python3 + Tkinter)

from tkinter import * from tkinter import messagebox jan = Tk() jan.geometry("500x500") Quadrado = Frame(jan,bg="#B0C4DE", width=25, height=25, bd=3, relief="raise") Quadrado.place(x=50, y=50) def moveUp(event): print("Key Up") jan.bi...
asked by 06.09.2018 / 03:28
1
answer

Collection of float data of an Entry Widget - Python Tkinter

I am developing a program for civil engineering calculations and I have a problem in the result of a Widget Entry, that same Entry is with you in an if condition as shown in the code below, but when I try to use the value typed in that field, th...
asked by 14.08.2018 / 04:19
1
answer

Progress Bar - Tkinter

While processing occurs, the screen has to display a progress bar for the user. What is the logic behind this (Python, Tkinter)? How do I make the progress bar appear on the screen while processing is taking place?     
asked by 10.08.2018 / 02:59
1
answer

How to delete a table row in sqlite3?

I am trying to make a crud in sqlite3 with a GUI through tkinter my table was created in DB Browser for sqlite. I have developed a little but it is not working: from tkinter import * from tkinter import ttk import sqlite3 #db_name = 'bancoda...
asked by 31.08.2018 / 01:58
2
answers

Transition of screens - Tkinter

Let's say there's a three-button screen (Tkinter), each calling another screen when clicked. How to switch between these screens without getting that screen aspect destroyed and a new one appearing? The idea is that it looks like the contents of...
asked by 01.08.2018 / 05:44
1
answer

Create a mini CRUD (basic) in tkinter with python

My name is Victor, I already researched the Treeview but could not do anything, but my goal is this one: I did an illustrated example followthecode:fromtkinterimport*classprincipal:def__init__(self):janela_principal=Tk()janela_principal.geom...
asked by 17.07.2018 / 03:40
1
answer

Two doubts about tkinter

I have two doubts about the Tkinter GUI. The first is: how do I do when the text of a label is greater than the size of the label, rather than being missing, continue on the next line. The second would be how to make label texts that have "\ n"...
asked by 31.05.2018 / 21:51