PySimpleGUI

Results 1145 comments of PySimpleGUI

https://github.com/PySimpleGUI/PySimpleGUI/issues/4136 I don't know if the techniques that are being discussed in this issue may be of help to you, but it seems like what they are suggesting may apply...

Thank you for the submission. I'll give it a look this week.

Please send licensing questions via email to [email protected] It appears you're trying to specify the key as if it were a Distribution key. If you're trying to use your normal...

How did you install PySimpleGUI? You should be able to import the module without getting a "not found" error regardless of licensing or PySimpleGUI version. Sounds like you may be...

If you want to retain the values already entered into the window, then you can use the new `setting` parameter was added to elements in the **PySimpleGUI 5 release.** You...

Yea, I'm familiar with AutoHotKey. A friend suggested it a few days back. I've used countless hotkey managers over the decades. In fact, I'm still running one of them called...

If you don't want to "shadow" the `print` call by reassigning print, then you can set a parameter in the call to sg.Print to reroute stdout: ```python sg.Print('', do_not_reroute_stdout=False) ```...

Thank you for reporting this bug! The line of code with the import was commented out in the code for some odd reason. I uncommented it and your code ran....

There may be a pixel used by the frame that's used inside the Column to contain the elements. Hard coding the size of the Column may be what's causing the...

Is there any movement on this problem? > Unfortunately, this is the kind of issue, often the case with tkinter issues, where it is difficult to know where the problem...