Skip to content

3rd Party Software

Combining Qt with 3rd party libraries or components? Ask here!
1.1k Topics 5.4k Posts
  • QOPCUA Open62541 security

    Unsolved
    2
    0 Votes
    2 Posts
    141 Views
    jsulmJ

    @Chs_QtLearner Please check config.log file to see why Open62541 security was disable (most probably some lib is missing).

  • Issues during Compile QOPCUA (QT6.6,WINDOWS10)

    Solved
    3
    0 Votes
    3 Posts
    154 Views
    C

    @kkoehne , thanks for your answer , I will do it

  • 1 Votes
    2 Posts
    543 Views
    C

    I meet same question, but It seems QT5, QOpcUa with Open62541 version 0.3 , not support Open SSL communication. So , now I upgrade to use QT6 ,But I meet another problem "Build QOpcUa issues - https://www.qtcentre.org/threads/72050-QT6-6-QOPCUA-Open62541-Build-issue

  • QWTPlotZoomer zoom in-out signal

    Solved
    6
    0 Votes
    6 Posts
    209 Views
    H

    @horizonQt I solve it. setAxisAutoScale worked for me

  • QwtPlotZoomer Problems

    6
    0 Votes
    6 Posts
    7k Views
    H

    @geus How will we integrate? can you give more info ?

  • Troubles converting qwt5 to qwt6

    Unsolved
    2
    0 Votes
    2 Posts
    133 Views
    SGaistS

    Hi,'

    Which class would that be ?

  • VLC-Qt build error

    Unsolved
    9
    0 Votes
    9 Posts
    448 Views
    jsulmJ

    @NewUser2023 Please post text not pictures.
    In your LIBS you use PWD - make sure the path is really valid and check the linker call to see what paths are passed to the linker.

  • Build QuaZip for Android Qt

    Solved
    16
    0 Votes
    16 Posts
    4k Views
    G

    @jsulm I managed to zip/unzip with quazip for Android device. With guidance from @jsulm. Thank you.

    https://forum.qt.io/topic/151699/how-to-unzip-an-application-running-on-an-android-device-using-qt

  • Using the fmt library is problematic

    Unsolved
    4
    0 Votes
    4 Posts
    721 Views
    S

    The fmt library also has a header-only mode. It is enabled by providing a define FMT_HEADER_ONLY. In this case you don't need to link to the fmt library anymore. The only requirement is then to have the path to the headers in your search path. (BTW, if everything is set up correctly, you most likely have to just write #include "fmt/format.h". The path up to this point should be set up differently.)

  • This topic is deleted!

    Unsolved
    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • execute .exe application from main QT application

    Unsolved
    2
    0 Votes
    2 Posts
    126 Views
    JonBJ

    @Ganesh-Kadam
    QProcess Class

  • "PostgreSQL having trouble opening."

    Unsolved
    2
    0 Votes
    2 Posts
    144 Views
    SGaistS

    Hi and welcome to devnet,

    In what way is it related to Qt ?

  • 1 Votes
    1 Posts
    443 Views
    No one has replied
  • how to integrate libssh with windows QT Creator 11.0.2

    Unsolved
    6
    0 Votes
    6 Posts
    396 Views
    S

    @jsulm Thanks for the solution.

  • Qt not creating .dmp files

    Unsolved
    4
    0 Votes
    4 Posts
    395 Views
    N

    Use Detours Library to hook SetUnhandledExceptionFilter

  • Process Variable or equivalent in QCustomPlot

    Unsolved
    4
    0 Votes
    4 Posts
    176 Views
    SGaistS

    What are these Epics widget you mentioned ?

  • 0 Votes
    2 Posts
    250 Views
    O

    So for some reason when I take out this from within the constructor of Mainwindow.cpp

    try { // Create an instance. mongocxx::instance inst{}; // Connection string const auto uri = mongocxx::uri{uriString}; // Setup the connection and get a handle on the database. mongocxx::client conn{uri}; mongocxx::database db = conn["TestDB"]; // Grabbing the collection col = db["TestCol"]; test(); } catch(const std::exception& e) { // Handle errors. std::cout<< "Exception: " << e.what() << std::endl; }

    then move it to the MainWindow.h header file, like this

    private: std::string uriString = "<uriConnectionString>"; const mongocxx::uri uri = mongocxx::uri{uriString}; mongocxx::instance inst{}; mongocxx::client conn{uri}; mongocxx::database db = conn["TestDB"]; mongocxx::collection col = db["TestCol"];

    it works...not sure why, so if someone who has more experience than myself has any input, please let me know I would love to see an explanation or thought process behind it. Otherwise this is what worked for me, hope it can help someone if they are stuck as well.

  • Downloading MongoDB Drivers to use in QT

    Solved
    11
    0 Votes
    11 Posts
    626 Views
    O

    @SGaist

    Awesome. Thank you a lot, appreciate the help. I will definitely be looking into this, and if I have any other questions I'll reach out, cheers!

  • 0 Votes
    11 Posts
    586 Views
    J.HilkJ

    @JonB you are correct, maybe its in a different thread

    very strange everything hard to tell from afar

  • 0 Votes
    3 Posts
    207 Views
    C

    @SGaist Thank you, that solved it. After extracting the files, I edited qwt.pro, and commented out the lines that run the tests:

    ################################################################ # Qwt Widget Library # Copyright (C) 1997 Josef Wilgen # Copyright (C) 2002 Uwe Rathmann # # This library is free software; you can redistribute it and/or # modify it under the terms of the Qwt License, Version 1.0 ################################################################ lessThan(QT_MAJOR_VERSION, 5) { lessThan(QT_MINOR_VERSION, 8) { error(Qt >= 4.8 required.) } } include( qwtconfig.pri ) TEMPLATE = subdirs CONFIG += ordered SUBDIRS = \ src \ classincludes \ doc contains(QWT_CONFIG, QwtDesigner ) { SUBDIRS += designer } contains(QWT_CONFIG, QwtExamples ) { SUBDIRS += examples } contains(QWT_CONFIG, QwtPlayground ) { SUBDIRS += playground } #contains(QWT_CONFIG, QwtTests ) { # SUBDIRS += tests #} qwtspec.files = qwtconfig.pri qwtfunctions.pri qwt.prf qwtspec.path = $${QWT_INSTALL_FEATURES} INSTALLS += qwtspec

    After that the below steps run without problems:

    qmake qwt.pro mingw32-make -j 6 mingw32-make install