All Questions
Tagged with simpledialog python-3.x
5 questions
0
votes
1
answer
426
views
Creating a simpledialog with tk that has a variable number of inputs and then outputting them
Im trying to create a simpledialog box in which you can input numbers. The number of inputs however does depend on a dataset, technically people are using it to input rows into a dataset.
I cannot ...
4
votes
4
answers
3k
views
tkinter askstring deleted before its visibility changed
I am trying to make a popup window where someone can fill in a string in an Entry box. I have gone through many examples, but it doesn't work.
I am trying to this:
var_entry = simpledialog....
1
vote
2
answers
3k
views
How to auto-activate a tkinter simpledialog pop-up window?
I have this function inside one of my python scripts which throws up a Tkinter simple dialog screen to ask for some simple user-input. The function works. However, there are 2 problems with it.
It ...
2
votes
1
answer
309
views
messagebox stops validation
I don't understand why a messagebox (or simpledialog) breaks the flow of the following code. The code basically validates an entry box in python 3.5. It checks that the field only contain numeric ...
1
vote
1
answer
376
views
Declared variables not initialised when using 'simpledialog'
I have a problem with some code that I have been working on where I am trying to pass a variable to a 'simpledialog' box. However, when I declare the variable in the __init__ section, the variable ...