I'm guessing you are running under Windows of some version.
Could you specify what version of OS for sure and which version of PAGE you are having this issue with?
Greg
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Under Linux, this only shows up when the program is run under Python.
I can verify that this happens under PAGE 7.2. A quick workaround would be to initialize the text var for the Entry widget at startup of the project_support.py file...
defmain(*args):
'''Main entry point for the application.'''globalrootroot=tk.Tk()root.protocol('WM_DELETE_WINDOW' , root.destroy)
# Createsatoplevelwidget.
global_top1, _w1_top1=root_w1=test2.Toplevel1(_top1)startup()root.mainloop()defstartup():
_w1.pwd.set('')
It is possible that it could happen with other widgets as well. It's always a good idea to initialize your variables, tk or otherwise, during the startup process.
I hope this helps.
Greg
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
Anonymous
-
2022-02-14
i use PAGE 7.2 and win10, it's a good practice to initialize varaiable such as ''
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I'm guessing you are running under Windows of some version.
Could you specify what version of OS for sure and which version of PAGE you are having this issue with?
Greg
Under Linux, this only shows up when the program is run under Python.
I can verify that this happens under PAGE 7.2. A quick workaround would be to initialize the text var for the Entry widget at startup of the project_support.py file...
It is possible that it could happen with other widgets as well. It's always a good idea to initialize your variables, tk or otherwise, during the startup process.
I hope this helps.
Greg
i use PAGE 7.2 and win10, it's a good practice to initialize varaiable such as ''
Thank you.
This will be fixed in the next release, which hopefully be in the next few days.
Greg