I want to create a PySimpleGui table where multiple rows can be selected just using the mouse (for an app in python3). The pysimplegui table allows to select various rows by means of Ctrl and Shift as usual, but i need to do this only by clicking at the rows. I have tried to do it by inserting a checkbox
Tag: user-interface
how do you ‘connect’ this source code with my tkinter python
hi am new to python and i have created a very simple encryption code and a simple gui with tkinter but i cant seem to ‘connect’ them together i tried so hard but i need help right now that is the encryption method and that is the gui Answer use the ‘command’ parameter in the Button widget to set it
Alternatives to Psychopy
Main question: I’m trying to build a brain-computer interface (BCI) experiment in Python that involves “high frequency” flashing (SSVEP), decision-making stimuli (P300), signal acquisition (EEG, with OpenBCI), and classifiers. I’ve been trying to use Psychopy toolbox for the interface part, but, unfortunately, it has been such a headache to make it work properly in parallel with the other processes on
How can I kill a thread with python
I am making a random number guessing game with GUI (Tkinter) and this comes up RuntimeError: threads can only be started once. I’m trying to kill the thread but I can’t find any way. Here’s the code: In the first function (main) is where I call the Thread and in the second function (process) is where I want to kill
How to stop a GUI from being automatically resized?
I wrote a calculator app by using Tkinter. The problem is when I click numbers or operators etc, the whole GUI resized automatically. Actually, I think the width of the label must fix in some way. I tried to use a frame as the parent for the label but it didn’t work. Should I use a different layout manager? Here
How to write correctly PyQT5 event function
How can I correctly write the event function to pass from one QLineEdit to another one by pressing the enter key? I know how to do that in this way: Working Example Now i want to understand how to do the same with this code (i think that the problem is with super() and init but i don’t know why).
Buttons in a for loop to update labels in a for loop?
Trying to get individual buttons to update individual labels in tkinter. Here’s my code: When you run the code there are three buttons in a column next to three labels in the next column over. What I’m trying to do is get it so that each button changes the label next to it. What happens when I run the code
Need help for running tkinter program
I am new to GUI programming so I don’t know why this is not working when I run this program it doesn’t open tkinter window so help me out,this is only running speech recognition program Answer Simply add root.mainloop() at the very end of the script. This is one of the must-haves when you make a script using Tkinter.
Open Window when Clicked on Push Button in Main Window PyQt5 Python
I have gone through the various post similar post which are having similar problems, tried out the answers also but it didn’t worked for me. So here is my problem – I have two windows – TestBox and MailBox, when i click on the TestBox Pushbutton along with Input Path argument, it has to open the MailBox Window, This new
Create Splash screen in PyQt5
I want to create a splash screen in PyQt5 using Python. I searched but I found in Pyqt4 and I have no understanding of PyQt4 so help me in this case I would be gratful Splash screen in pyqt Answer Try it: Example 2