PySimpleGUI

Results 1145 comments of PySimpleGUI

> I really think this is worth the investment of getting this feature into the code prior to recording the Udemy lesson on Tables. Now that I've said this, I...

I don't have 100% coverage for illegal values for all parameters in PySimpleGUI. For this is basically a badly formatted color string being passed in. I would consider this to...

I appreciate the code @jason990420. Very helpful in both replicating and seeing how a user may actually try to do this. The problem with a user ever doing this is...

> Thank you! ![image](https://user-images.githubusercontent.com/46163555/179162264-60a26410-efcb-45c4-93fa-17a9f440e300.png) There are those magic words again.... _Thank you for the kind and supportive words_! They have fueled this project and continue to. Having slept on this...

@infinitepower18 where do you learn about it? Did you do a google search for a list of python GUI packages and saw a site that discussed them that then led...

> it was a long time ago ![image](https://user-images.githubusercontent.com/46163555/179410903-d6b705a7-d657-41ca-aec9-e917c3186c61.png) hearing that! Glad you've stuck around

Well, this totally made my day! Great story, really engaging, and feels SOOOO good... thank you! ![image](https://user-images.githubusercontent.com/46163555/184547462-113fad05-5230-4c41-a7b6-ae887c9b0568.png)

Copy/paste works, certainly for single line input. Does it happen on all inputs including the single line or just the multi-line?

Control+A selects all text in the `Input` element, at least on Windows it does. ```python import PySimpleGUI as sg layout = [ [sg.Text('My Window')], [sg.Input(key='-IN-')], [sg.Button('Go'), sg.Button('Exit')] ] window =...