Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Cannot output a value using QSerialPort

Cannot output a value using QSerialPort

Scheduled Pinned Locked Moved Unsolved General and Desktop
55 Posts 8 Posters 3.9k Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • J Offline
    J Offline
    jude.bato
    wrote on last edited by jude.bato
    #1

    I am not sure why Qt is not outputting a value in the GUI I have made using QSerialPort. The code compiles, and all the syntax is formatted correctly. I have tried looking at different forum posts, but I am unable to pinpoint the error.

    I am currently testing with a breadboard, circuit, and light bulb; all the hardware works and I am able to capture a voltage in the Arduino software (I can add the Arduino code if need be).

    The issue I am having is that I can't display a voltage in Qt. I am using an Arduino Uno and an Arduino Voltage sensor (VCC <25V).

    voltage_sensor.pro

    QT       += core gui serialport
    
    greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
    
    TARGET = voltage_sensor
    TEMPLATE = app
    
    # The following define makes your compiler emit warnings if you use
    # any Qt feature that has been marked deprecated (the exact warnings
    # depend on your compiler). Please consult the documentation of the
    # deprecated API in order to know how to port your code away from it.
    DEFINES += QT_DEPRECATED_WARNINGS
    
    # You can also make your code fail to compile if it uses deprecated APIs.
    # In order to do so, uncomment the following line.
    # You can also select to disable deprecated APIs only up to a certain version of Qt.
    #DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0
    
    SOURCES += \
        main.cpp \
        dialog.cpp
    
    HEADERS += \
        dialog.h
    
    FORMS += \
        dialog.ui
    
    # Default rules for deployment.
    qnx: target.path = /tmp/$${TARGET}/bin
    else: unix:!android: target.path = /opt/$${TARGET}/bin
    !isEmpty(target.path): INSTALLS += target
    

    dialog.h

    #ifndef DIALOG_H
    #define DIALOG_H
    
    #include <QDialog>
    #include <QtSerialPort/QSerialPortInfo>
    #include <QByteArray>
    
    QT_BEGIN_NAMESPACE
    namespace Ui { class Dialog; }
    QT_END_NAMESPACE
    
    class Dialog : public QDialog
    {
        Q_OBJECT
    
    public:
        Dialog(QWidget *parent = nullptr);
        ~Dialog();
    
    private slots:
        void readSerial();
        void updateVoltage(QString);
    
    private:
        Ui::Dialog *ui;
    
        QSerialPort *arduino;
        static const quint16 arduino_uno_vendor_id = 9025;
        static const quint16 arduino_uno_product_id = 67;
        QByteArray serialData;
        QString serialBuffer;
        QString parsed_data;
        double voltage_value;
    };
    #endif // DIALOG_H
    

    dialog.cpp

    #include "dialog.h"
    #include "ui_dialog.h"
    #include <QSerialPort>
    #include <QSerialPortInfo>
    #include <string>
    #include <QDebug>
    #include <QMessageBox>
    
    Dialog::Dialog(QWidget *parent) :
        QDialog(parent),
        ui(new Ui::Dialog)
    {
        ui->setupUi(this);
        ui->voltagelcdNumber->display("-------");
        arduino = new QSerialPort(this);
        serialBuffer = "";
        parsed_data = "";
        voltage_value = 0.0;
    
        bool arduino_is_available = false;
        QString arduino_uno_port_name;
        foreach(const QSerialPortInfo &serialPortInfo, QSerialPortInfo::availablePorts()){
            if(serialPortInfo.hasProductIdentifier() && serialPortInfo.hasVendorIdentifier()){
                if((serialPortInfo.productIdentifier() == arduino_uno_product_id) && (serialPortInfo.vendorIdentifier() == arduino_uno_vendor_id)){
                    arduino_is_available = true;
                    arduino_uno_port_name = serialPortInfo.portName();
                }
            }
        }
    
        if(arduino_is_available)
        {
            qDebug()<<"Found the port \n";
            arduino->setPortName(arduino_uno_port_name);
            arduino->open(QSerialPort::ReadOnly);
            arduino->setBaudRate(QSerialPort::Baud9600);
            arduino->setDataBits(QSerialPort::Data8);
            arduino->setFlowControl(QSerialPort::NoFlowControl);
            arduino->setParity(QSerialPort::NoParity);
            arduino->setStopBits(QSerialPort::OneStop);
            QObject::connect(arduino, SIGNAL(readyRead), this, SLOT(readSerial()));
        } else {
            qDebug()<<"Could not find the correct port \n";
            QMessageBox::information(this,"Serial Port Error", "Could not open the serial port");
        }
    }
    
    Dialog::~Dialog()
    {
        if(arduino->isOpen())
        {
            arduino->close();
        }
        delete ui;
    }
    
    void Dialog::readSerial()
    {
        QStringList buffer_split = serialBuffer.split(",");
        if(buffer_split.length() < 3)
        {
            serialData = arduino->readAll();
            serialBuffer = serialBuffer + QString::fromStdString(serialData.toStdString());
            serialData.clear();
        } else {
            serialBuffer = "";
            qDebug() << buffer_split << "\n";
            parsed_data = buffer_split[1];
            voltage_value = (parsed_data.toDouble()) - 0.1;
            qDebug() << "Voltage: " << voltage_value << "\n";
            parsed_data = QString::number(voltage_value,'g',4);
            Dialog::updateVoltage(parsed_data);
        }
    }
    
    void Dialog::updateVoltage(QString sensor_reading)
    {
        ui->voltagelcdNumber->display(sensor_reading);
    }
    

    main.cpp

    #include "dialog.h"
    
    #include <QApplication>
    
    int main(int argc, char *argv[])
    {
        QApplication a(argc, argv);
        Dialog w;
        w.setWindowTitle("Voltage Sensor");
        w.setFixedSize(434,122);
        w.show();
    
        return a.exec();
    }
    

    dialog.ui

    <?xml version="1.0" encoding="UTF-8"?>
    <ui version="4.0">
     <class>Dialog</class>
     <widget class="QDialog" name="Dialog">
      <property name="geometry">
       <rect>
        <x>0</x>
        <y>0</y>
        <width>449</width>
        <height>157</height>
       </rect>
      </property>
      <property name="windowTitle">
       <string>Dialog</string>
      </property>
      <layout class="QGridLayout" name="gridLayout">
       <item row="0" column="0">
        <layout class="QHBoxLayout" name="horizontalLayout">
         <item>
          <widget class="QLabel" name="voltagelabel">
           <property name="text">
            <string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p align=&quot;center&quot;&gt;&lt;span style=&quot; font-size:24pt; font-weight:600; color:#ff0000;&quot;&gt;Voltage&lt;/span&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
           </property>
          </widget>
         </item>
         <item>
          <widget class="QLCDNumber" name="voltagelcdNumber">
           <property name="palette">
            <palette>
             <active>
              <colorrole role="WindowText">
               <brush brushstyle="SolidPattern">
                <color alpha="255">
                 <red>0</red>
                 <green>0</green>
                 <blue>255</blue>
                </color>
               </brush>
              </colorrole>
              <colorrole role="Light">
               <brush brushstyle="SolidPattern">
                <color alpha="255">
                 <red>20</red>
                 <green>20</green>
                 <blue>85</blue>
                </color>
               </brush>
              </colorrole>
              <colorrole role="Dark">
               <brush brushstyle="SolidPattern">
                <color alpha="255">
                 <red>20</red>
                 <green>20</green>
                 <blue>85</blue>
                </color>
               </brush>
              </colorrole>
              <colorrole role="Text">
               <brush brushstyle="SolidPattern">
                <color alpha="255">
                 <red>0</red>
                 <green>0</green>
                 <blue>0</blue>
                </color>
               </brush>
              </colorrole>
              <colorrole role="ButtonText">
               <brush brushstyle="SolidPattern">
                <color alpha="255">
                 <red>0</red>
                 <green>0</green>
                 <blue>0</blue>
                </color>
               </brush>
              </colorrole>
              <colorrole role="PlaceholderText">
               <brush brushstyle="SolidPattern">
                <color alpha="128">
                 <red>0</red>
                 <green>0</green>
                 <blue>0</blue>
                </color>
               </brush>
              </colorrole>
             </active>
             <inactive>
              <colorrole role="WindowText">
               <brush brushstyle="SolidPattern">
                <color alpha="255">
                 <red>0</red>
                 <green>0</green>
                 <blue>255</blue>
                </color>
               </brush>
              </colorrole>
              <colorrole role="Light">
               <brush brushstyle="SolidPattern">
                <color alpha="255">
                 <red>20</red>
                 <green>20</green>
                 <blue>85</blue>
                </color>
               </brush>
              </colorrole>
              <colorrole role="Dark">
               <brush brushstyle="SolidPattern">
                <color alpha="255">
                 <red>20</red>
                 <green>20</green>
                 <blue>85</blue>
                </color>
               </brush>
              </colorrole>
              <colorrole role="Text">
               <brush brushstyle="SolidPattern">
                <color alpha="255">
                 <red>0</red>
                 <green>0</green>
                 <blue>0</blue>
                </color>
               </brush>
              </colorrole>
              <colorrole role="ButtonText">
               <brush brushstyle="SolidPattern">
                <color alpha="255">
                 <red>0</red>
                 <green>0</green>
                 <blue>0</blue>
                </color>
               </brush>
              </colorrole>
              <colorrole role="PlaceholderText">
               <brush brushstyle="SolidPattern">
                <color alpha="128">
                 <red>0</red>
                 <green>0</green>
                 <blue>0</blue>
                </color>
               </brush>
              </colorrole>
             </inactive>
             <disabled>
              <colorrole role="WindowText">
               <brush brushstyle="SolidPattern">
                <color alpha="255">
                 <red>20</red>
                 <green>20</green>
                 <blue>85</blue>
                </color>
               </brush>
              </colorrole>
              <colorrole role="Light">
               <brush brushstyle="SolidPattern">
                <color alpha="255">
                 <red>20</red>
                 <green>20</green>
                 <blue>85</blue>
                </color>
               </brush>
              </colorrole>
              <colorrole role="Dark">
               <brush brushstyle="SolidPattern">
                <color alpha="255">
                 <red>20</red>
                 <green>20</green>
                 <blue>85</blue>
                </color>
               </brush>
              </colorrole>
              <colorrole role="Text">
               <brush brushstyle="SolidPattern">
                <color alpha="255">
                 <red>20</red>
                 <green>20</green>
                 <blue>85</blue>
                </color>
               </brush>
              </colorrole>
              <colorrole role="ButtonText">
               <brush brushstyle="SolidPattern">
                <color alpha="255">
                 <red>20</red>
                 <green>20</green>
                 <blue>85</blue>
                </color>
               </brush>
              </colorrole>
              <colorrole role="PlaceholderText">
               <brush brushstyle="SolidPattern">
                <color alpha="128">
                 <red>0</red>
                 <green>0</green>
                 <blue>0</blue>
                </color>
               </brush>
              </colorrole>
             </disabled>
            </palette>
           </property>
           <property name="digitCount">
            <number>7</number>
           </property>
          </widget>
         </item>
        </layout>
       </item>
      </layout>
     </widget>
     <resources/>
     <connections/>
    </ui>
    

    Application Output

    Found the port
    
    1 Reply Last reply
    0
    • S Offline
      S Offline
      Simon sun
      wrote on last edited by
      #2

      Maybe this statement doesnot work.
      QObject::connect(arduino, SIGNAL(readyRead), this, SLOT(readSerial()));
      Maybe the “readyReady” function lack of “()”,or you can try set breakpoint in slot readSerial() to ensure the slot is performed.

      1 Reply Last reply
      3
      • Christian EhrlicherC Offline
        Christian EhrlicherC Offline
        Christian Ehrlicher
        Lifetime Qt Champion
        wrote on last edited by
        #3

        @Simon-sun said in Cannot output a value using QSerialPort:

        Maybe the “readyReady”

        Not maybe - it does.

        Use the new signal/slot syntax to avoid such errors.

        Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
        Visit the Qt Academy at https://academy.qt.io/catalog

        1 Reply Last reply
        3
        • J Offline
          J Offline
          jude.bato
          wrote on last edited by
          #4

          Thank you for the replies although I'm not 100% sure how I would implement this. Is there code I need to add, or even take away?

          1 Reply Last reply
          0
          • Christian EhrlicherC Offline
            Christian EhrlicherC Offline
            Christian Ehrlicher
            Lifetime Qt Champion
            wrote on last edited by
            #5

            Your connect statement is simply wrong and if you would have checked the return value you would have seen it by yourself. See https://wiki.qt.io/New_Signal_Slot_Syntax for the new signal/slot syntax

            Qt Online Installer direct download: https://download.qt.io/official_releases/online_installers/
            Visit the Qt Academy at https://academy.qt.io/catalog

            1 Reply Last reply
            2
            • J Offline
              J Offline
              jude.bato
              wrote on last edited by
              #6

              I just need to receive from the serial port, with the new syntax it requires a sender, &sender function which I cannot use / don't need

              Pablo J. RoginaP 1 Reply Last reply
              0
              • J Offline
                J Offline
                jude.bato
                wrote on last edited by
                #7

                I changed QObject::connect(arduino, SIGNAL(readyRead), this, SLOT(readSerial())); to QObject::connect(arduino, 0, 0, 0, Qt::ConnectionType()); and I got the same output

                1 Reply Last reply
                0
                • J jude.bato

                  I just need to receive from the serial port, with the new syntax it requires a sender, &sender function which I cannot use / don't need

                  Pablo J. RoginaP Offline
                  Pablo J. RoginaP Offline
                  Pablo J. Rogina
                  wrote on last edited by
                  #8

                  @jude-bato said in Cannot output a value using QSerialPort:

                  he new syntax it requires a sender, &sender function which I cannot use / don't need

                  Please please take some time to read the link suggested for @Christian-Ehrlicher and try to understand the concepts of signal & slot under Qt

                  Tip 1 : sender is a Qt object, and is the sender of a signal; an object that under some conditions will emit (send) a signal
                  Tip 2: your sender is arduino object

                  Upvote the answer(s) that helped you solve the issue
                  Use "Topic Tools" button to mark your post as Solved
                  Add screenshots via postimage.org
                  Don't ask support requests via chat/PM. Please use the forum so others can benefit from the solution in the future

                  1 Reply Last reply
                  1
                  • J Offline
                    J Offline
                    jude.bato
                    wrote on last edited by
                    #9

                    I was reviewing the link and with trial and error I began trying to implement the new syntax. Saying that, part of the QObject::connect requires const char *signal which I have no idea what that means.

                    1 Reply Last reply
                    0
                    • J Offline
                      J Offline
                      jude.bato
                      wrote on last edited by jude.bato
                      #10

                      Reading on the new syntax I updated my Qt version as a troubleshooting method and put in QObject::connect(arduino, &QSerialPort::readyRead, this, &Dialog::readSerial); and the Application output is no member named 'connect' in 'QDebug'. I'm very lost

                      jsulmJ 1 Reply Last reply
                      0
                      • J jude.bato

                        Reading on the new syntax I updated my Qt version as a troubleshooting method and put in QObject::connect(arduino, &QSerialPort::readyRead, this, &Dialog::readSerial); and the Application output is no member named 'connect' in 'QDebug'. I'm very lost

                        jsulmJ Offline
                        jsulmJ Offline
                        jsulm
                        Lifetime Qt Champion
                        wrote on last edited by
                        #11

                        @jude-bato Please show the code where you call connect()

                        https://forum.qt.io/topic/113070/qt-code-of-conduct

                        J 1 Reply Last reply
                        0
                        • jsulmJ jsulm

                          @jude-bato Please show the code where you call connect()

                          J Offline
                          J Offline
                          jude.bato
                          wrote on last edited by
                          #12

                          @jsulm QObject::connect(arduino, SIGNAL(readyRead), this, SLOT(readSerial())); This is where connect should be called, but with the new syntax I very confused on how I can connect and read from Arduino into Qt

                          jsulmJ 1 Reply Last reply
                          -1
                          • SGaistS Offline
                            SGaistS Offline
                            SGaist
                            Lifetime Qt Champion
                            wrote on last edited by
                            #13

                            Hi,

                            You signal specification is still wrong in the connect statement.

                            In any case, as already requested several times: please post the current code you are using.

                            Interested in AI ? www.idiap.ch
                            Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                            1 Reply Last reply
                            3
                            • J jude.bato

                              @jsulm QObject::connect(arduino, SIGNAL(readyRead), this, SLOT(readSerial())); This is where connect should be called, but with the new syntax I very confused on how I can connect and read from Arduino into Qt

                              jsulmJ Offline
                              jsulmJ Offline
                              jsulm
                              Lifetime Qt Champion
                              wrote on last edited by
                              #14

                              @jude-bato Why do you post again your old connect() call (which is wrong because the signal is missing brackets - readyRead())?
                              Please post the code where you call connect() with new syntax (without SIGNAL/SLOT) and not just the connect() call itself but also the surrounding code...

                              https://forum.qt.io/topic/113070/qt-code-of-conduct

                              1 Reply Last reply
                              2
                              • J Offline
                                J Offline
                                jude.bato
                                wrote on last edited by
                                #15

                                QObject::connect(arduino, &QSerialPort::readyRead, this, &Dialog::readSerial); This is the code line that I have integrated in my current project, I'm just not sure how to convert it to the new syntax. I was using the old code because in the original question I wanted to specify where I was talking about. I know it was wrong and I changed it already. The problem I'm having is with the new syntax.

                                jsulmJ Pablo J. RoginaP 2 Replies Last reply
                                0
                                • J jude.bato

                                  QObject::connect(arduino, &QSerialPort::readyRead, this, &Dialog::readSerial); This is the code line that I have integrated in my current project, I'm just not sure how to convert it to the new syntax. I was using the old code because in the original question I wanted to specify where I was talking about. I know it was wrong and I changed it already. The problem I'm having is with the new syntax.

                                  jsulmJ Offline
                                  jsulmJ Offline
                                  jsulm
                                  Lifetime Qt Champion
                                  wrote on last edited by
                                  #16

                                  @jude-bato And with that code line you get "no member named 'connect' in 'QDebug'"?

                                  https://forum.qt.io/topic/113070/qt-code-of-conduct

                                  1 Reply Last reply
                                  0
                                  • J jude.bato

                                    QObject::connect(arduino, &QSerialPort::readyRead, this, &Dialog::readSerial); This is the code line that I have integrated in my current project, I'm just not sure how to convert it to the new syntax. I was using the old code because in the original question I wanted to specify where I was talking about. I know it was wrong and I changed it already. The problem I'm having is with the new syntax.

                                    Pablo J. RoginaP Offline
                                    Pablo J. RoginaP Offline
                                    Pablo J. Rogina
                                    wrote on last edited by
                                    #17

                                    @jude-bato said in Cannot output a value using QSerialPort:

                                    This is the code line

                                    If you're looking for some help in the forum please make others' life easier.
                                    Why is so difficult to show some code snippet of yours? not just ONE line.
                                    Come on, some context helps understand what might be going on with your issue.

                                    Upvote the answer(s) that helped you solve the issue
                                    Use "Topic Tools" button to mark your post as Solved
                                    Add screenshots via postimage.org
                                    Don't ask support requests via chat/PM. Please use the forum so others can benefit from the solution in the future

                                    1 Reply Last reply
                                    4
                                    • J Offline
                                      J Offline
                                      jude.bato
                                      wrote on last edited by
                                      #18

                                      This is the code snippet, its in my dialog.cpp file

                                      if(arduino_is_available)
                                          {
                                              qDebug()<<"Found the port \n";
                                              arduino->setPortName(arduino_uno_port_name);
                                              arduino->open(QSerialPort::ReadOnly);
                                              arduino->setBaudRate(QSerialPort::Baud9600);
                                              arduino->setDataBits(QSerialPort::Data8);
                                              arduino->setFlowControl(QSerialPort::NoFlowControl);
                                              arduino->setParity(QSerialPort::NoParity);
                                              arduino->setStopBits(QSerialPort::OneStop);
                                              connect(*arduino, Dialog::readSerial(updateVoltage()),this,readSerial()); //too few arguments to function call, expected 1, have 0
                                          } else {
                                              qDebug()<<"Could not find the correct port \n";
                                              QMessageBox::information(this,"Serial Port Error", "Could not open the serial port");
                                          }
                                      }
                                      

                                      and the read serial code I have:

                                      void Dialog::readSerial()
                                      {
                                          QStringList buffer_split = serialBuffer.split(",");
                                          if(buffer_split.length() < 3)
                                          {
                                              serialData = arduino->readAll();
                                              serialBuffer = serialBuffer + QString::fromStdString(serialData.toStdString());
                                              serialData.clear();
                                          } else {
                                              serialBuffer = "";
                                              qDebug() << buffer_split << "\n";
                                              parsed_data = buffer_split[1];
                                              voltage_value = (parsed_data.toDouble()) - 0.1;
                                              qDebug() << "Voltage: " << voltage_value << "\n";
                                              parsed_data = QString::number(voltage_value,'g',4);
                                              Dialog::updateVoltage(parsed_data);
                                          }
                                      }
                                      
                                      Pablo J. RoginaP 1 Reply Last reply
                                      0
                                      • SGaistS Offline
                                        SGaistS Offline
                                        SGaist
                                        Lifetime Qt Champion
                                        wrote on last edited by
                                        #19

                                        Hi,

                                        One thing that is missing: you don't check that the open call is successful. You should add that.

                                        Interested in AI ? www.idiap.ch
                                        Please read the Qt Code of Conduct - https://forum.qt.io/topic/113070/qt-code-of-conduct

                                        J 1 Reply Last reply
                                        2
                                        • J jude.bato

                                          This is the code snippet, its in my dialog.cpp file

                                          if(arduino_is_available)
                                              {
                                                  qDebug()<<"Found the port \n";
                                                  arduino->setPortName(arduino_uno_port_name);
                                                  arduino->open(QSerialPort::ReadOnly);
                                                  arduino->setBaudRate(QSerialPort::Baud9600);
                                                  arduino->setDataBits(QSerialPort::Data8);
                                                  arduino->setFlowControl(QSerialPort::NoFlowControl);
                                                  arduino->setParity(QSerialPort::NoParity);
                                                  arduino->setStopBits(QSerialPort::OneStop);
                                                  connect(*arduino, Dialog::readSerial(updateVoltage()),this,readSerial()); //too few arguments to function call, expected 1, have 0
                                              } else {
                                                  qDebug()<<"Could not find the correct port \n";
                                                  QMessageBox::information(this,"Serial Port Error", "Could not open the serial port");
                                              }
                                          }
                                          

                                          and the read serial code I have:

                                          void Dialog::readSerial()
                                          {
                                              QStringList buffer_split = serialBuffer.split(",");
                                              if(buffer_split.length() < 3)
                                              {
                                                  serialData = arduino->readAll();
                                                  serialBuffer = serialBuffer + QString::fromStdString(serialData.toStdString());
                                                  serialData.clear();
                                              } else {
                                                  serialBuffer = "";
                                                  qDebug() << buffer_split << "\n";
                                                  parsed_data = buffer_split[1];
                                                  voltage_value = (parsed_data.toDouble()) - 0.1;
                                                  qDebug() << "Voltage: " << voltage_value << "\n";
                                                  parsed_data = QString::number(voltage_value,'g',4);
                                                  Dialog::updateVoltage(parsed_data);
                                              }
                                          }
                                          
                                          Pablo J. RoginaP Offline
                                          Pablo J. RoginaP Offline
                                          Pablo J. Rogina
                                          wrote on last edited by
                                          #20

                                          @jude-bato said in Cannot output a value using QSerialPort:

                                          connect(*arduino, Dialog::readSerial(updateVoltage()),this,readSerial());

                                          Again, please read the documentation regarding signal and slots. You may want to try this article as well.

                                          Tip: a typical connect sentence has 4 elements, try to identify such elements within your code...

                                          Dialog::updateVoltage(parsed_data);

                                          Do you know why you're calling an static method here?

                                          Upvote the answer(s) that helped you solve the issue
                                          Use "Topic Tools" button to mark your post as Solved
                                          Add screenshots via postimage.org
                                          Don't ask support requests via chat/PM. Please use the forum so others can benefit from the solution in the future

                                          J 1 Reply Last reply
                                          4

                                          • Login

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Users
                                          • Groups
                                          • Search
                                          • Get Qt Extensions
                                          • Unsolved