Feb-01-2022, 09:36 AM
I currently use this function to clear multiple listboxes, but i feel is not a good way to do it and am sure can be done with a for loop but can't work it out.
def delete_result(): # used in refreshing the data
runner1.delete(0, tk.END)
fw1.delete(0, tk.END)
fp1.delete(0, tk.END)
vw1.delete(0, tk.END)I will be adding many more listboxes so need a better option.
