Aug-31-2023, 09:10 PM
I need to be able to open a pop up window with an Label, Entry and Button widgets. They have to be located from left to right (label/entry/button). I want the button function to output the entry input. The code i have so far is
def open_deposit_popup():
top=Toplevel(window)
top.geometry("500x250")
top.title("Deposit Amount")
lbl=Label(top,text="Enter Amount: ",font=("Courier 16 normal")).place(relx=1,rely=1,anchor=W)
entry=Entry(top).place(relx=1,rely=1,anchor=CENTER)unfortunately the way things are now i dont get to see any of the present widgets which is why the button is missing
