Python Forum
[Tkinter] Tkinter delete values in Entries, when I'm changing the Frame
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
[Tkinter] Tkinter delete values in Entries, when I'm changing the Frame
#1
First of all, I am sorry if I do not comply with the optimal formalities in my first question.

I have programmed a GUI with several windows with Tkinter. Each of these windows has its own entries. When I enter values into the entries and I use the method tkraise() to highlight another window, the values are deleted.

Does anyone know what I can do to keep the values in the entries, even if I change between the windows?

Do I have to save the values first with entryXYZ.get() and set the values in the entries again, if the user switch between the windows(Frames)?
def subframe_AGap(self):                          
        self.jobNameA_text = tk.StringVar()
        self.jobNameA_entry = tk.Entry(self.sub_AGapCanvas, textvariable = self.jobNameA_text)
        self.jobNameA_entry.place(x=130, y=120, width = 210)
        self.jobNameA_entry.configure({"background": "light green"})


self.A_GapFrame.tkraise()
self.subframe_AGap()
self.A_GapFrame.grid(row=2, column=0, sticky='news') 
When i put some text in self.jobNameA_text and after that I order to switch to an other Frame B_GapFrame.tkraise() all my values in subframe_AGap() are deleted. Have someone another idea to solve this?
Reply
#2
What you describe is not normal behavior, so all you have to do is find the bug in you code.

To get much help you really have to wrap you python code inside python tags.
Quote:[python]
code goes here
[/python]
There is a little python button in the toolbar for doing this.

Without proper formatting it is hard to read your code. Without all the relevant code it is hard to find your error. My guess is you are deleting entries by creating new entries. If there is no reference to an Entry it gets gobbled up by garbage collection. All Python objects have a reference count. The count is essentially how many variables are mapped to the object.
When the count drops to zero the object is deleted and memory is returned to the heap to be reused. Each time you call obj.subframe_AGap(), obj.jobNameA_entry gets pointed at a new Entry. That means it no longer points to the existing entry. If obj.jobNameA_entry was the only variable mapped to the Entry the reference count drops to zero and the Entry object gets deleted.

Though what I say is correct it may not be what is causing your problem. If you could create a small working example that demonstrates the problem I'm sure someone will give you a better answer.
Reply
#3
import tkinter as tk

class Win1:
    

    def __init__(self, master):
        
        
        self.master = master
        self.master.title("Gap Assessment")
        self.topFrame = tk.Frame(self.master)
        self.topFrame.grid(row=0, column=0, sticky='news', ipady = 5)
        self.A_GapFrame = tk.Frame(self.master)
        self.B_GapFrame = tk.Frame(self.master)
        self.C_GapFrame = tk.Frame(self.master)
        self.E_GapFrame = tk.Frame(self.master)
        self.F_GapFrame = tk.Frame(self.master)
        self.K_GapFrame = tk.Frame(self.master)


        
        # Create a Tkinter variable
        self.gapType = tk.StringVar(self.master)
        # Dictionary with options
        self.choiceGap =  ['AFrame','BFrame']
        # self.choiceGap = sorted(self.choiceGap)
        self.gapType.set('') # set the default option
        self.ctngMenu = tk.OptionMenu(self.topFrame, self.gapType, *self.choiceGap, command=self.chioseGap_handle)
        self.ctngMenu.grid(row = 1, column =2)

    def chioseGap_handle(self, selected):

        if selected == 'AFrame':
            self.A_GapFrame.tkraise()
            self.subframe_AGap()
            self.A_GapFrame.grid(row=2, column=0, sticky='news')
            
        if selected == 'BFrame':
            self.B_GapFrame.tkraise()
            self.subframe_BGap()
            self.B_GapFrame.grid(row=2, column=0, sticky='news') 


            
    def subframe_AGap(self):
            self.jobNameA_text = tk.StringVar()
            self.jobNameA_entry = tk.Entry(self.A_GapFrame, textvariable = self.jobNameA_text)
            self.jobNameA_entry.grid(row=1, column=0, sticky='news') 
            
    def subframe_BGap(self):
            
            self.jobNameB_text = tk.StringVar()
            self.jobNameB_entry = tk.Entry(self.B_GapFrame, textvariable = self.jobNameB_text)
            self.jobNameB_entry.grid(row=2, column=0, sticky='news') 
        

        

root = tk.Tk()
root.geometry("+50+50")
app = Win1(root)
root.mainloop()
Thank you for your attention. You can see my problem when you run this code. You will see that, if you enter something in the Entry and then select in the OptionMenue another Frame, you will see that the Entry is empty when you go back to the first Frame.
Reply
#4
You are making a new blank entry each time you change frame
Reply
#5
(Jul-29-2020, 04:25 PM)Yoriz Wrote: You are making a new blank entry each time you change frame


Do you know what i have to do, to solve this?
Reply
#6
Create the entries once only, at the same point of creating the containing frames and not as part of the button event handler
Reply
#7
I got it right! Sort of.

Here's a shorter example that demonstrates the problem:
import tkinter as tk
 
class Win1:

    def __init__(self, master):
        self.master = master
        self.master.title("Gap Assessment")
        self.topFrame = tk.Frame(self.master)
        self.topFrame.grid(row=0, column=0, sticky='news', ipady = 5)
        self.A_GapFrame = tk.Frame(self.master)

        # Create a Tkinter variable
        self.gapType = tk.StringVar(self.master)
        # Dictionary with options
        self.choiceGap =  ['AFrame']
        # self.choiceGap = sorted(self.choiceGap)
        self.gapType.set('') # set the default option
        self.ctngMenu = tk.OptionMenu(self.topFrame, self.gapType, *self.choiceGap, command=self.chioseGap_handle)
        self.ctngMenu.grid(row = 1, column =2)
 
    def chioseGap_handle(self, selected):
        self.A_GapFrame.tkraise()
        self.subframe_AGap()
        self.A_GapFrame.grid(row=2, column=0, sticky='news')
 
    def subframe_AGap(self):
        self.jobNameA_text = tk.StringVar()
        self.jobNameA_entry = tk.Entry(self.A_GapFrame, textvariable = self.jobNameA_text)
        self.jobNameA_entry.grid(row=1, column=0, sticky='news') 
        print('A', self.jobNameA_entry)
             
root = tk.Tk()
root.geometry("+50+50")
app = Win1(root)
root.mainloop()
When I run this and make selections from the combo box I see this in the console:
Output:
A .!frame2.!entry A .!frame2.!entry2 A .!frame2.!entry3 A .!frame2.!entry4
Each time I select a frame it creates a new Entry widget. Even if this didn't cause the old Entry widget to be deleted it would still cause previously entered text to disappear behind the new Entry widget that is drawn over the top.

You need to rewrite you code so it only creates one entry widget for each frame.
Reply
#8
(Jul-29-2020, 04:32 PM)Yoriz Wrote: Create the entries once only, at the same point of creating the containing frames and not as part of the button event handler

Thanks. Yes you are right. But the next Problem is, that the widgets from AFrame does not disappear, when i call BFrame. For this reason the BFrame contains widgets which are not supposed to be in there. Do you know what i can do in this case?
Reply
#9
(Jul-29-2020, 04:35 PM)robertoCarlos Wrote:
(Jul-29-2020, 04:32 PM)Yoriz Wrote: Create the entries once only, at the same point of creating the containing frames and not as part of the button event handler

Thanks. Yes you are right. But the next Problem is, that the widgets from AFrame does not disappear, when i call BFrame. For this reason the BFrame contains widgets which are not supposed to be in there. Do you know what i can do in this case?

Hide them?
Reply
#10
Moved self.subframe_AGap() & self.subframe_BGap() from hioseGap_handle to the __init__

import tkinter as tk


class Win1:

    def __init__(self, master):

        self.master = master
        self.master.title("Gap Assessment")
        self.topFrame = tk.Frame(self.master)
        self.topFrame.grid(row=0, column=0, sticky='news', ipady=5)
        self.A_GapFrame = tk.Frame(self.master)
        self.B_GapFrame = tk.Frame(self.master)
        self.C_GapFrame = tk.Frame(self.master)
        self.E_GapFrame = tk.Frame(self.master)
        self.F_GapFrame = tk.Frame(self.master)
        self.K_GapFrame = tk.Frame(self.master)
        self.subframe_AGap()
        self.subframe_BGap()

        # Create a Tkinter variable
        self.gapType = tk.StringVar(self.master)
        # Dictionary with options
        self.choiceGap = ['AFrame', 'BFrame']
        # self.choiceGap = sorted(self.choiceGap)
        self.gapType.set('')  # set the default option
        self.ctngMenu = tk.OptionMenu(
            self.topFrame, self.gapType, *self.choiceGap, command=self.chioseGap_handle)
        self.ctngMenu.grid(row=1, column=2)

    def chioseGap_handle(self, selected):

        if selected == 'AFrame':
            self.A_GapFrame.tkraise()
            self.A_GapFrame.grid(row=2, column=0, sticky='news')

        if selected == 'BFrame':
            self.B_GapFrame.tkraise()
            self.B_GapFrame.grid(row=2, column=0, sticky='news')

    def subframe_AGap(self):
        self.jobNameA_text = tk.StringVar()
        self.jobNameA_entry = tk.Entry(
            self.A_GapFrame, textvariable=self.jobNameA_text)
        self.jobNameA_entry.grid(row=1, column=0, sticky='news')

    def subframe_BGap(self):

        self.jobNameB_text = tk.StringVar()
        self.jobNameB_entry = tk.Entry(
            self.B_GapFrame, textvariable=self.jobNameB_text)
        self.jobNameB_entry.grid(row=2, column=0, sticky='news')


root = tk.Tk()
root.geometry("+50+50")
app = Win1(root)
root.mainloop()
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  [Tkinter] TKinter Remove Button Frame Nu2Python 8 803 Jan-16-2024, 06:44 PM
Last Post: rob101
  [Tkinter] Help running a loop inside a tkinter frame Konstantin23 3 1,447 Aug-10-2023, 11:41 AM
Last Post: Konstantin23
  tkinter mapview in a frame janeik 2 1,239 Jun-22-2023, 02:53 PM
Last Post: deanhystad
  [Tkinter] Trouble changing Font within tkinter frame title AnotherSam 1 4,006 Sep-30-2021, 05:57 PM
Last Post: menator01
  tkinter frame camera opencv Nick_tkinter 9 5,321 Mar-21-2021, 06:41 PM
Last Post: Nick_tkinter
  [Tkinter] changing the frame colour nick123 4 16,414 Jul-24-2020, 07:32 AM
Last Post: LegacyCoding
  Why is wx.NO_BORDER changing panels within a frame MeghansUncle2 4 2,506 Jul-12-2020, 12:32 PM
Last Post: Yoriz
  [Tkinter] tkinter, dropdowns with changing options Sheepykins 4 9,698 Jul-03-2020, 06:06 AM
Last Post: jdos
  changing tkinter label from thread nanok66 3 7,210 Jun-07-2020, 01:37 AM
Last Post: nanok66
  How to disable focus on Frame in Tkinter? szafranji 1 2,967 May-13-2020, 10:45 PM
Last Post: DT2000

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020