Skip to content

General and Desktop

This is where all the desktop OS and general Qt questions belong.
83.4k Topics 456.4k Posts
  • Select Qt Lib from command line for compile

    Solved
    4
    0 Votes
    4 Posts
    296 Views
    ocgltdO
    @SGaist I now see there is a seperate qmake file in /opt/Qt/5.9.9 and /opt/Qt/5.15.2 so that explains it! Thaks
  • QT + Cmake + GTest = Test end up to be fatal

    Unsolved cmake gtest fatal cpp
    21
    0 Votes
    21 Posts
    5k Views
    SGaistS
    Well, there's nothing to fix, the output matches what your test does.
  • Animating a QWidget

    Unsolved
    2
    0 Votes
    2 Posts
    291 Views
    JonBJ
    @U7Development I assume you should use The Animation Framework. There is the QPropertyAnimation Class. A simple widget-moving example in Python is in Animating custom widgets with QPropertyAnimation.
  • Cant run the application

    Solved
    4
    0 Votes
    4 Posts
    312 Views
    jsulmJ
    @SruDom Well, it can't find the Windows platform-plug-in. Check here: https://doc.qt.io/qt-5/windows-deployment.html It also shows how plug-ins need to be deployed.
  • SVG image in QGraphicsView and fit into view

    Unsolved
    1
    0 Votes
    1 Posts
    112 Views
    No one has replied
  • When LOG4QT_VERSION_STR not declare error will come ?

    Unsolved
    7
    0 Votes
    7 Posts
    525 Views
    Q
    @jsulm Sorry i can not write whole file here. but part which i include in that i mention below: include(/home/man/WORK_S/Project/24july21_log/proj/trunk/Log4Qt-1.4.2/src/log4qt/log4qt.pri)
  • QProcess revisted...

    Solved
    5
    0 Votes
    5 Posts
    384 Views
    SPlattenS
    @JonB , found the issue, stupid but you have to add --databases to the command line.
  • How to parse QString

    Solved
    5
    0 Votes
    5 Posts
    1k Views
    J
    Thank you.
  • QT internal functions are using high CPU when Application is Idle.

    Unsolved
    4
    0 Votes
    4 Posts
    284 Views
    V
    Hi Kent, Is their any way where we can increase and decrease the QT internal timer so that its give a buffer in between that?
  • put "readAllStandardOutput()" result in Qstring variable

    Solved string
    3
    0 Votes
    3 Posts
    653 Views
    J
    right ! my mistake !thanks
  • QProcess not working.

    Solved
    29
    0 Votes
    29 Posts
    4k Views
    SPlattenS
    @JonB I will investigate now.
  • This topic is deleted!

    Unsolved
    3
    0 Votes
    3 Posts
    34 Views
  • Qt::opcua Rpi

    Solved
    2
    0 Votes
    2 Posts
    327 Views
    M
    data, time, and timezone must be the same on RPI and kepware OPC server :P.
  • libmysqlclient.so mismatch on fedora 33

    Solved
    5
    0 Votes
    5 Posts
    407 Views
    jsulmJ
    @ocgltd said in libmysqlclient.so mismatch on fedora 33: Is this a bug? No, it just means that Qt MySQL plug-in was built using older MySQL version...
  • QFileDialog and network resources

    Unsolved
    3
    0 Votes
    3 Posts
    398 Views
    SPlattenS
    @Kent-Dorfman , thank you, I've noticed that when I use QFileDialog::getExistingDirectory which I use elsewhere, this does include all the locations that are missing from the instance created with QFileDialog, sorry I missed the way I an invoking the original is just with show.
  • How top place a Image incide a custom dial without using Qml

    Solved
    10
    0 Votes
    10 Posts
    610 Views
    J
    @mrjj I got the output bro... Thankyou ...
  • Qt Charts can not set point to point line Series?

    Unsolved
    1
    0 Votes
    1 Posts
    124 Views
    No one has replied
  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    10 Views
    No one has replied
  • std::filesystem crashes my app

    Unsolved
    11
    0 Votes
    11 Posts
    1k Views
    H
    @SGaist Are you starting it ? The command line ? from Qt Creator
  • Converting QByteArray to QString

    Unsolved qbytearray qstring qprocess
    13
    0 Votes
    13 Posts
    11k Views
    C
    @Sina-Ranjkesh-zade said in Converting QByteArray to QString: For "standard input" if you mean input arguments of the process, I got this error: No, I meant standard input. That is , the python program reads from a terminal and accepts input just as if you typed it (except it is the Qt program sending that input). The Qt program can send a command to the python program, send the data it needs, and read the result (if there is one) back on the python program's standard output. Or you can used shared memory, or a socket, or files, or do whatever the python program is doing in the Qt program...