Posts by Volney Casas • 16 points
2 posts
-
0
votes1
answer218
viewsA: How can I call an SQL query function in Python?
Hello, you need to instantiate the class in your logic file, not in your module. Do so: from database import WorkDB wdb = WorkDB('workdb.db') wdb.select()
-
0
votes2
answers2075
viewsA: Change color and border size Tkinter Menu
To change the size of the Voce border uses the borderwidth option in the Frame, you can also use Relief for the type of border ex: Frame(ondevaioframe, relief = RIDGE, borderwidth = '8') Now the…