Skip to content
  • Squish WinCC OA custom widget detection

    Unsolved Squish
    1
    0 Votes
    1 Posts
    6 Views
    No one has replied
  • How to test Android native Java code in Qt project?

    Unsolved Mobile and Embedded
    1
    0 Votes
    1 Posts
    6 Views
    No one has replied
  • Displaying RTSP Stream Inside QMediaPlayer Window on i.MX6 Device

    Unsolved QML and Qt Quick
    1
    0 Votes
    1 Posts
    8 Views
    No one has replied
  • I hear crickets chirping

    Unsolved C++ Gurus
    11
    0 Votes
    11 Posts
    94 Views
    J.HilkJ
    @JonB @chatGPT explains the joke in I hear crickets chirping: Excellent question! Let’s break it down clearly and simply. When someone jokes: “C++26 is only 6 more years away before release” they’re poking fun at how long it often takes for compilers and tools to fully support new C++ standards after they are officially published. Here’s the context in plain terms: C++ naming: “C++26” is the standard planned to be finalized in 2026. So the name means the ISO committee is targeting 2026 to finish the standard. But availability lags: Even though the standard is published in 2026, your compiler (like GCC, Clang, MSVC) won’t fully support all its features immediately. Historically it often takes 4–6 years after the standard date for widespread, stable, mainstream support. Examples: C++17 was finalized in 2017, but many people didn’t have fully usable compiler support until ~2020–2021. C++20 was finalized in 2020, but full usable support (including modules, coroutines, concepts) is only maturing around 2024–2025. So when someone says: “C++26 is only 6 more years away before release” they're joking: ✅ The standard will be written in 2026. ✅ But you probably won’t really use it comfortably in production until ~2032.
  • 0 Votes
    4 Posts
    131 Views
    V
    @cristian-adam said in Qt Creator Android 15 adb.exe pull /system/bin/app_process64 error: I am seeing the same state on macOS with Android 15 and a Samsung Galaxy S23. Thanks for that, yes it seems to be a file access issue, I also wondered if there might be a new Developer Mode setting to enable this to work
  • Map Touch Issue in Qt QML

    Unsolved QML and Qt Quick
    2
    0 Votes
    2 Posts
    35 Views
    Z
    Make popup windows modal https://doc.qt.io/qt-6/qml-qtquick-dialogs-dialog.html
  • Pyside6 failed in python 3.11 embedded version

    Unsolved Qt for Python
    5
    0 Votes
    5 Posts
    59 Views
    T
    Windows Version:Win10 Pro; Pyside6 version:6.9.1 Python File:python-3.11.9-embed-amd64(downloaded from python website,and use pip to install Pyside6) Python Script:import sys from PySide6.QtWidgets import ( QApplication, QMainWindow, QPushButton, QMessageBox ) class MainWindow(QMainWindow): def init(self): super().init() self.setWindowTitle("PySide6 ") self.setGeometry(100, 100, 300, 200) button = QPushButton("Hello", self) button.setGeometry(100, 80, 100, 30) button.clicked.connect(self.show_message) def show_message(self): QMessageBox.information(self, "OK", "OK,PySide6!") if name == "main": app = QApplication(sys.argv) window = MainWindow() window.show() sys.exit(app.exec())
  • 0 Votes
    7 Posts
    100 Views
    JonBJ
    @Shap QPlainTextEdit will (should) behave the same as QTextEdit so far as sizing is concerned. They are both for multiline input, and can grow vertically. QLineEdit is for single-line input, and would not grow vertically. Same as the other widgets you talked about.
  • Communication between ui.qml, .qml and .py

    Unsolved Qt for Python
    2
    0 Votes
    2 Posts
    20 Views
    F
    Ir seems the @QmlElement decorator is missing (see Tutorial , QmlElement and one example of the tutorial examples.
  • QT 6.8 and FFmpeg 7.1

    Unsolved General and Desktop
    2
    0 Votes
    2 Posts
    56 Views
    SGaistS
    Hi and welcome to devnet, AFAIK, it literally means that the file path you passed points to something that does not exist. Did you check the path for correctness ? Where does it point to ? What kind of file is that ?
  • 0 Votes
    3 Posts
    43 Views
    A
    Thanks for the reply! Yes, I agree this really seems to be a tvirt.vir issue, not Qt. That's why I wrote a standalone C program (outside Qt) to test the pipe communication. I’ve already tried: Sending the message DO#0#1 to \\.\pipe\\tubotest Triggering the EventoEnviar event after writing Still, nothing changes on the simulator side, and the input value shown in my DAQ console remains 0. I do have some documentation, and it says tvirt.vir listens for specific commands and events, but I’ll try to confirm exactly what sequence it expects. Thanks again. I’ll keep testing with the C version for now.
  • Problem testing with windows api

    Unsolved General and Desktop
    10
    0 Votes
    10 Posts
    64 Views
    JonBJ
    @JulsPower That does look more reasonable, i wasn't sure what the MS docs were telling you to do. Which implies you were in the Another possibility is that the issue has nothing to do with Qt or deployment but rather is a "bug" which only happens to show up in certain environments or circumstances. Such as a memory access issue. I had a quick glance at your WTSEnumerateSessionsExA() and it seemed OK to me, but you might want to try it standalone without any Qt stuff to make sure that works across environments. situation! The Qt and deployment changes simply showed or masked the problem. But you have still learnt what you should do to e.g. deploy to another machine, or be sure it works on yours outside of the Creator development environment which should be useful :)
  • I couldn't start the emulator on my PC.

    Solved Mobile and Embedded android
    5
    0 Votes
    5 Posts
    45 Views
    M
    Thank you so much for your support . it works now.
  • How to switch off specific warnings in Qt Creator

    Unsolved General and Desktop
    15
    0 Votes
    15 Posts
    97 Views
    D
    @aha_1980 said in How to switch off specific warnings in Qt Creator: @DiBosco Have you already seen https://stackoverflow.com/questions/22129383/removing-unused-parameters-warning-in-qtcreator ? For your case, it would be: QMAKE_CXXFLAGS_WARN_ON += -Wno-deprecated-copy Regards Ah, yes I had seen that. The English in the most upticked reply just made me go "What?". Just could not understand what they were saying, but I had tried: QMAKE_CXXFLAGS_WARN_ON += -Wdeprecated-copy Thinking why on earth would putting the warning on make it disappear, but out of desperation I gave it a go. Had I realised it needed -Wno-deprecated-copy, not -Wdeprecated-copy I'd've been fine hours ago. Many thanks for that, now doing just what I want. Also @JonB Thanks for your help too.
  • how to set app-ico ?

    Unsolved General and Desktop
    6
    0 Votes
    6 Posts
    79 Views
    J
    @J.Hilk said in how to set app-ico ?: shadow build because your not building inside your source file but all generated files are placed in a different folder As @J.Hilk said, I also think the issue is same, image is not in the shadow build folder @cuijg you can uncheck the shadow build checkbox and clean, build, run.
  • Interactive application icon

    Unsolved Showcase
    8
    0 Votes
    8 Posts
    238 Views
    DawinchD
    @Mizmas haha, looks funny :)
  • Share files in Qt QML/C++ app in Android

    Unsolved Mobile and Embedded
    7
    0 Votes
    7 Posts
    102 Views
    ekkescornerE
    @J.Hilk thx for the offer... I already did changes - but it's not public yet give me some weeks to publish a first raw Qt 6.9 / CMake release then you can take a look if I missed something ;-)
  • Android X86_64 App crashes before reaching Qt main.

    Unsolved Mobile and Embedded
    12
    0 Votes
    12 Posts
    171 Views
    SMF-QtS
    My full blown test app now runs on the X86_64 simulator it looks awful its ui was not designed for phone use but all the bells gongs and whistles are there and information from my database is populating the widgets which is good. Time now to reflect on what I have learned and tidy up loose ends, thanks to those who helped on this journey.
  • Using QList [] operator in const methods

    Solved C++ Gurus
    10
    0 Votes
    10 Posts
    123 Views
    Kent-DorfmanK
    @SimonSchroeder said in Using QList [] operator in const methods: Even if operator[](int) const returns a copy you have the exact same possible race condition in a multithreading environment. The only advantage is that it is fewer lines of code where this might occur. Multithreading seems an irrelevant point though because the competent programmer understands that accessing a shared resource needs a mutex, so if safe programming processes are observed then there is no race condition. re const vs non-const: totally agree and get it. It's the way things are...however, I do sometimes wish nothing was ever const and everything was mutable. :^)
  • 0 Votes
    8 Posts
    82 Views
    Axel SpoerlA
    It's all documented here and it works out of the box. I personally don't use -skip. I explicitly select the submodules I want to build. I always build w/o prefix into directories outside the source tree. E.g. like that: ../dev/configure -developer-build -xcb -nomake examples -make tests -submodules qtdeclarative ninja