Most voted "pyqt" questions
Pyqt a library used to link (Binding) between a Qt framework and a Python script
Learn more…60 questions
Sort by count of
-
0
votes1
answer59
viewsHow to replace one layout with another in Qhboxlayout?
I created two Qgridlayout, with 16 buttons each, numbered from 1 to 32. I stored the two Qgridlayout in a list (one at each list position). This list is inserted into a Qhboxlayout to display the…
-
0
votes0
answers66
viewsProblems with multiple windows in Pyqt5
Hi, I’m having trouble with multiple windows on Pyqt5. I created a graphical interface using Qt Designer, which consists of two Frames, in order to generate two windows for the user. The initial…
-
0
votes1
answer50
viewsHow to resolve Qobject::connect: Cannot Queue Arguments of type 'Qvector<int>' error in Pyqt5 using threading to update Gui interface
Good night, I’m a beginner in the python area, and I’m having a hard time threading along with a Gui interface, created in QT Desegner. Talking to some friends showed me this forum, because maybe…
-
0
votes0
answers16
viewsCx_freeze. Error with Cx_oracle client when running the program on another computer
I developed a GUI program using Pyqt5 for users to feed a "Mysql" database (which is installed on a server on the same network as other computers). However this program needs to get information from…
-
-1
votes1
answer319
viewshelp with Qlocale and Brazilian currency format
in c++ I used to convert an integer value to the Brazilian currency format as follows: QLocale loc = QLocale::system(); QLocale brasil(QLocale::Portuguese);…
-
-1
votes2
answers437
viewsIs there a way to center the screen created in python ( pyqt ) for any resolution?
I’m doing development of an application in python and Qt, ie pyqt5 and I wonder if there is a way whenever I run the display I created centralize on the screen, I saw that has to do this manually…
-
-1
votes1
answer203
viewsHow to create a Progressbar with Python and Pyqt5?
I’m having a little trouble creating a Progress bar, it’s actually about interacting with her because creating in yourself is actually easy: self.progressbar = QProgressBar()…
-
-1
votes0
answers23
viewsIt is possible to make a system that when you press a button adds one more in excel
I am making a system in Python for a bakery at each sale the user clicks on the button and adds one in a certain cell in an excel spreadsheet, I wanted to know how does this system add another…
-
-2
votes1
answer51
viewsPyqt5 - Inheriting information from one class to another. (Python)
I created two windows in Pyqt5, where the first window needs to inherit information from the second, in this example I created: Tela_1: containing a "Qlineedit" for typing and a "Qpushbutton" to…
-
-2
votes1
answer46
viewsPyqt5 - Set an Inputmask on a Qlineedit to type only the "F10" key
I have an app that contains a Qlineedit that when active the user has the option to press the "F10" key and thus open another window. But I’d like to block that Qlineedit for editing, leaving only…