PySimpleGUI

Results 1145 comments of PySimpleGUI

Quite welcome. It seems like it may help you save some code, but I didn't study your code enough to truly know. You'll have to be the final judge of...

> ![image](https://user-images.githubusercontent.com/46163555/120922345-98730180-c696-11eb-8dce-eecb1fdd5808.png) I just realized from your readme that you're running an older PySimpleGUI version that does not have the User Settings APIs in it. You'll need to move to...

I'm not sure about adding options. But you could potentially mix the json access. It would be unusual, but it's possible I suppose if you wanted to leave the existing...

I don't understand the specific request. If you've got an enhancement request that you think fits PySimpleGUI, you're welcome to open an enhancement request issue HTTP://Issues.PySimpleGUI.org or use the GUI...

Somewhat experimental, but let's give it a try.... I may not be understanding what you're after, but this is a solution I came up with given a few minutes this...

> You can of course create a separate menu for each with different keys attached but this seems an inefficient way of doing things. This was the intended direction for...

Here's an example of individual menus for a couple of the elements. ```python import PySimpleGUI as sg import copy orig_menu = ['', ['Edit Me', 'Version', 'Exit']] menu1 = copy.deepcopy(orig_menu) menu2...

> when I first started programming back in the late 70s we couldn't afford to duplicate code You and me both.... 4K of RAM in my first computer. CPM machines...

This change, with the new member variable was released to PyPI this morning in the 5.0.5 release. It is not in the call reference guide yet as I didn't make...

I was looking at the differences in our code for the subprocessing, and I believe you'll be able to simply swap out your Popen for the PySimpleGUI Exec call. I...