Posts by Luiz de Albuquerque • 1 point
2 posts
-
0
votes1
answer278
viewsQ: I cannot delete record of the sqlite database selected in the listbox
After formatting the record display in the listbox ('{} Cellular: {}'. format(name, cell phone). lista = self.cur.execute("SELECT * FROM lista") for nome, celular in lista: self.listbox.insert(END,…
-
0
votes1
answer1673
viewsA: Problem per image on a Tkinter button
It was also with this problem but I solved standardizing the variable "image": self.botao.image= image. So the code went like this from tkinter import * class Janela: def __init__(self, master):…