I have a fairly simple Python problem which I really struggle to solve.
I have a LabelFrame widget within a Tk widget parent. The LabelFrame contains a number of widgets, including labels, entry widgets and buttons. Upon pressing a button, I want to execute a def, however want to send the user inputs in the entry widgets to the def for processing. However. when I add any parameters to the command in the button (e.g. command=make_new_user(entry1,entry2), the command executes automatically when running the code, without even pressing the button. I want the command only to execute when the button is pressed, but also be able to send the parameters to the processing def.
Can anyone help with this please?
Thanks, MiddleClassMan