Alan Gauld via Tutor wrote:
> On 17/06/18 23:59, Ali M wrote:
>
>> def update_list(self):
>> search_term = self.search_var.get()
>> self.listbox.delete(0, tk.END)
>> for item in self.listbox:
>
> The above pair of lines look odd.
> You delete everything on the listbox
On 17/06/18 23:59, Ali M wrote:
> def update_list(self):
> search_term = self.search_var.get()
> self.listbox.delete(0, tk.END)
> for item in self.listbox:
The above pair of lines look odd.
You delete everything on the listbox then try to iterate
over it? Is that reall
Hi, i get an error while searching my Entry field and i don't understand
what that means.
code:
#! /usr/bin/env python3
#GeologyDict by Ali M
import sqlite3 as sqlite
import tkinter as tk
from tkinter import Text
from tkinter import Entry
from tkinter import Scrollbar
from tkinter import ttk
#GU