Relative Content

Tag Archive for pyqt6

I’m trying to design an app with 3 rows, with each row changing depending on the data needed by the user

So the app that I am designing needs to have three rows, the header row would display the main project data, this would be the parent project, then under that there would be data for the equipment within that project, then the last row would be test data under the equipment, under the project. I’ve tried the QVBoxLayout method and it’s just not populating the rows properly underneath. Should I create separate widgets/files per data form so I can just recall it and display it on the grid? Information on the data forms are pulled from an SQL database.

I’m trying to design an app with 3 rows, with each row changing depending on the data needed by the user

So the app that I am designing needs to have three rows, the header row would display the main project data, this would be the parent project, then under that there would be data for the equipment within that project, then the last row would be test data under the equipment, under the project. I’ve tried the QVBoxLayout method and it’s just not populating the rows properly underneath. Should I create separate widgets/files per data form so I can just recall it and display it on the grid? Information on the data forms are pulled from an SQL database.

I’m trying to design an app with 3 rows, with each row changing depending on the data needed by the user

So the app that I am designing needs to have three rows, the header row would display the main project data, this would be the parent project, then under that there would be data for the equipment within that project, then the last row would be test data under the equipment, under the project. I’ve tried the QVBoxLayout method and it’s just not populating the rows properly underneath. Should I create separate widgets/files per data form so I can just recall it and display it on the grid? Information on the data forms are pulled from an SQL database.

pyqt6 no video play back

Im using python 3.12.4 and pyqt6. Im trying to play back videos on websites but it will not play back and i get error failed to execute ‘addSourceBuffer’ on MediaSource’: The type provided (‘audio/mp4;codecs=”mp4a.40.2″‘) is unsupported. I cannot figure out why it is doing this.

Python 3.12 PyQT6 Error with uic.load_ui failure

I have created a PyQt6 form with the designer and can convert to py file and it runs. I would prefer just loading the ui file into a class in python. I have several different examples of this and they all fail on the same line “load_ui”

QTreeWidget findItems always returns nothing

I have a simple tree with at most 30 items and at most a depth of 2. I am trying to find a specific item in the tree that is in the second column (which is hidden from display). When I search for a string I can guarantee it in the tree, I still get a list of nothing.