I'm making a program but I can't write things inside the entry box of ttk. The windows digital keyboard doesn't pop out and either so I can't copy/paste things inside it. can someone help fixing this?
# Definindo Valores iniciais
i_nome = tk.StringVar()
i_nome.set("Correia cap")
i_max = tk.StringVar()
i_max.set(15)
i_min = tk.StringVar()
i_min.set(3)
i_exist = tk.StringVar()
i_exist.set(10)
i_pi = tk.StringVar()
i_pi.set(190001234)
e_nome = tk.Entry(windowpct, state='normal', textvariable=i_nome)
e_qtd_max = tk.Entry(windowpct, state='normal', textvariable=i_max)
e_qtd_min = tk.Entry(windowpct, state='normal', textvariable=i_min)
e_qtd_exist = tk.Entry(windowpct, state='normal', textvariable=i_exist)
e_pi = tk.Entry(windowpct, state='normal', textvariable=i_pi)
it doesn't read the initial values as well...