python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Windows7 64-bit, Pyside6, PyQt6, ImportError: DLL load failed while importing QtCore: The specified procedure could not be found
I installed PySide6 and PyQt6 by following command:
python -m pip install PySide6
python -m pip install PyQt6
But when I try to run import PySide6.QtCore or import PyQt6.QtCore, then I get this erro...
Stepan0806
Votes: 0
Answers: 1
How to get more PySide6 styles in pip virtual environment?
I am making a program in PySide6 and have a pip venv setup, but this way QStyleFactory.keys() shows only "Windows" and "Fusion" styles. Is there any way to get more themes, or set ...

Marcus Hagberg
Votes: 0
Answers: 0
QML ListView Model setProperty Work only 1 time
I have a ListView filled with checkboxes, I want to change the checkbox status from a button click this is my code.
import QtQuick
import QtQuick.Controls 2.15
Window {
width: 640
height: 480...
user7179690
Votes: 0
Answers: 1
QtQuick: how to connect a tcp client (signal / slot) with the GUI in qml
I'm currently writing my first QtQuick application with GUI in qml code that includes a TCP server. The whole thing is already running quite well and several clients can connect to the server from out...
ThomasAlvaEdison
Votes: 0
Answers: 1