79819797

Date: 2025-11-14 08:43:00
Score: 2
Natty:
Report link

First issue might be that you have to call the function. You have only defined it, without running it. So add the line at the bottom of your code:

form.build_controls()

Another issue might be that this line may have a casing issue:

self.form_main = tk.TK()

may have to be (note Tk()):

self.form_main = tk.Tk()

Does this help you out?

Reasons:
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (0.5):
Posted by: Peter Alexander Christiaans