Skip to content

3rd Party Software

Combining Qt with 3rd party libraries or components? Ask here!
1.1k Topics 5.5k Posts
  • Send Email with QT 5.15 or 6.4

    Unsolved
    2
    0 Votes
    2 Posts
    255 Views
    JonBJ

    @cjacquel2021
    Suggest you search this forum, or the web, for send mail or send email for various suggestions.
    https://forum.qt.io/topic/102082/is-there-anyway-to-send-email-to-someone-in-qt/2 mist be a start.

  • libQtcore so.5

    Unsolved
    4
    0 Votes
    4 Posts
    385 Views
    JonBJ

    @sneha-ashok said in libQtcore so.5:

    The libraries files of qt is not been picked by my Yocto setup only the libQTcore so.5 libraries is not been.

    Please review this sentence. We realise English may not be your first language, but it does not make sense as it is.

    If the error message really reads libQTcore so.5 (did you copy & paste it or just type it in?) then that is incorrectly spelt somewhere you have asked for it.

  • Qt6.5 Qtmultimedia ALSA Issue

    Solved
    11
    0 Votes
    11 Posts
    2k Views
    I

    @Imeshsps Turns out you have to add -DQT_FEATURE_alsa=ON to make experimental feature ON.

  • Building mongodb drivers for qt6.5

    Unsolved
    1
    0 Votes
    1 Posts
    232 Views
    No one has replied
  • Qt program freezing with CAN bus periodically

    Solved
    4
    0 Votes
    4 Posts
    318 Views
    I

    @Imeshsps This was solved by reading the CAN messages on a seperate process and pass only necessary data to Qt through a Named pipe. Seems like large number of signals occur from CAN messages overflow the Qt signal space.

  • 0 Votes
    28 Posts
    3k Views
    M

    @piervalli

    Awesome, thank you! I will move ahead with TLS as I expected. Thanks for your assistance earlier as well!

  • Yocto compilation issue - CMake Error

    Unsolved
    1
    0 Votes
    1 Posts
    624 Views
    No one has replied
  • Qt SQL driver plugin for SQLCipher ( for Qt 5 )

    Unsolved
    5
    0 Votes
    5 Posts
    1k Views
    F

    @BB44
    If it didn't solve the problem. I did so. I am using qt 6.5.0. But, I think, there will be no difference if you use qt 5 version. I compiled the sqlcipher dll library through vcpkg, but I couldn't build it from the sources. I created my own sqlcipher driver class using the source code of the sqlite driver, which is in the sources, changed only the name of the driver class and the paths inside the source files, added the SqlDriverCreator class, registered the new driver in the code:

    sqldrvcreator = new SqlDriverCreator; QSqlDatabase::registerSqlDriver("SQLITECIPHER", sqldrvcreator);,

    After that everything works. You can also create a plugin project and build the plugin dll library and drop one dll file into the release folder with the project in the release_dir\plugins\sqldrivers folder and it should work without registering the driver and including libraries in the pro file.

  • LDRA tool suite integration with Qt

    Unsolved
    4
    0 Votes
    4 Posts
    385 Views
    SGaistS

    Depending on your project and constraints, you will have to use an older version of Qt that supports that outdated version of Visual Studio. I would first check with LDRA to ensure with them that their tools can be used with more recent versions of Visual Studio.

  • Linking issue with libusb-1.0

    Solved
    11
    0 Votes
    11 Posts
    1k Views
    K

    @JonB Exactly, downloaded libusb version for mingw 64 and now it's working.
    Thank u guys for support.

  • 0 Votes
    2 Posts
    1k Views
    O

    Did you manage to compile qwt for iOS?

  • Integrating zbar library

    Solved
    5
    0 Votes
    5 Posts
    680 Views
    B

    @JoeCFD I was able to find an answer to this question by doing this:

    find_package(PkgConfig REQUIRED)
    pkg_check_modules(ZBar REQUIRED IMPORTED_TARGET zbar)
    target_link_libraries(camera PUBLIC PkgConfig::ZBar)
    Since I anyway had pkg-config, I found that package and then zbar using that package and then linked it with the libraries.

  • Microsoft office Activex in qt designer

    Unsolved
    1
    0 Votes
    1 Posts
    183 Views
    No one has replied
  • Designer + OpenFrameworks (Need help setting up)

    Unsolved
    4
    0 Votes
    4 Posts
    395 Views
    SGaistS

    This thread on the OpenFrameworks forum might help.

  • HDF5 library and H5T

    Solved
    11
    0 Votes
    11 Posts
    895 Views
    N

    I found the problems:
    I forgot to include the libraries hdf5_hl
    hdf5_hl_cpp and hdf5_hl

    I had 2 versions of hdf5 installed: 12.2 and 14.0

    I had to uninstall 12.2.
    Now, it seems to work.

    Thanks to all.

  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • 0 Votes
    2 Posts
    320 Views
    K

    Was able to resolve it by adding LIBS += -lWindowsApp to *.pro file.

    Thread can be closed.

  • 0 Votes
    3 Posts
    519 Views
    D

    @SGaist Great Thank you this, I know that qt has its own MQTT module just I had already developed my code for MQTT using the mosquitto library before I knew I was going to be making a GUI using QT.

  • 0 Votes
    30 Posts
    4k Views
    O

    Fixed the issue.

    Turns out it was something with my laptop. I had gotten a secondary laptop that had the same environment, all Windows 10, downloaded the NIDAQmx software, and it connected to my Qt application perfectly fine. Very odd, unsure why this happened. I went about the installation process the same on both laptops.

    I hope nobody ever has to go through this issue again, but if you are, might want to try on a new laptop..Worked for me!

  • QT-Creator cant find ros2 packages

    Moved Unsolved
    2
    0 Votes
    2 Posts
    820 Views
    serkan_trS

    @Schloern
    To run ros packages, it is necessary to run the setup.bash file, for example, the setup.bash file should be run in the linux operating system.

    source /opt/ros/humble/setup.bash

    Start the QT Creator application in the terminal where you enter the setup.bash controls.

    step 1: Open terminal and enter "source /opt/ros/humble/setup.bash" command. Note: this is ros humble enter your own setup.bash file
    step 2: Open the QT Creator application from the terminal you included ros2
    step 3: If you want to work simultaneously with ROS, use threads.