Skip to content
Advertisement

How do I change a listbox view in my python Tkinter project to a tree view

I tried to use tree view to display the data of my project output but consistently got below error for all the button clicksenter image description here

I then switched to Listbox view and I was able to execute my project with no errors, all data being displayed, scrollbar working and select working perfectly.

How I want to use the tree view and also get it to work with selection and scrollbar. If anyone can assist correct my code to use the tree view instead and point out my mistakes. I have commented the tree view code.

JavaScript

Advertisement

Answer

So I figured this out after a few research here and there. You need to first create the tree view below

Create a Treeview Scrollbar

JavaScript

and then create a function to displace this, using a loop.

JavaScript

calling the database class

JavaScript
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement