-1
The idea is that the user type the number of lines and I create the entry according to this amount, this I managed to do, what I’m not getting is to get the value of these entry with get().
y1=0
lista= []
while y1 < x1:
y1= y1+1
lista.append(y1)
for y1 in lista:
self.num= Label(self.root, text= y1,font= fonte, bg=cor).grid(row=(9+y1), column=0,sticky= NW)
self.cxx = Entry(self.root)
self.cxx["width"] = 4
self.cxx["font"] = fonte
self.cxx.grid(row=(9+y1), column=1)
I suggest you create a Minimum, complete and verifiable example of the problem, so it is easy to reproduce and test it. Still I don’t see any
get
in the code you have in question. Not to mention that allEntry
are being kept on top of each other– Isac