Create a ping application with QProcess - Qr 5 Design Patterns

แชร์
ฝัง
  • เผยแพร่เมื่อ 26 ธ.ค. 2024

ความคิดเห็น • 17

  • @EnghelbertMussCalderonMe
    @EnghelbertMussCalderonMe 2 ปีที่แล้ว

    Thanks for Video, ILY man, took me 7 hours to find this video and solve my problem in 20 minutes xD

  • @hjw9347
    @hjw9347 3 ปีที่แล้ว

    Thanks for the video, great help to me in getting to grips with QProcess

  • @olatunjifelix2102
    @olatunjifelix2102 3 ปีที่แล้ว

    Great video. I now overview of what QProcess is capable of doing. Please can you help with how to use QProcess to call Class/methods already done in C#

  • @bogdankoval2081
    @bogdankoval2081 11 หลายเดือนก่อน

    Hi you do very interesting content, but I have one question. You have said that it's incorrect to use readAllStandartOutput, what is the correct way? Would be very grateful for your response.

  • @easyprogramming969
    @easyprogramming969 4 ปีที่แล้ว

    Thank you. I have a question, will I have a problem if I want to develop a complex application in QML and javascript?

    • @VoidRealms
      @VoidRealms  4 ปีที่แล้ว

      QML is a graphical front end on top of the QT libraries that can run on any device any operating system while you can do JavaScript it's really recommended to move everything to c++, and the back end rather than having your logic in the graphic interface

  • @siavashtaherparvar1969
    @siavashtaherparvar1969 ปีที่แล้ว

    Love you, all I can say

  • @gameforfun5657
    @gameforfun5657 3 ปีที่แล้ว

    i can't work this. my os is ubuntu 18.04

  • @elephoenix9880
    @elephoenix9880 3 ปีที่แล้ว

    error in command.append("ping " + m_address);
    ?? version 6

    • @elephoenix9880
      @elephoenix9880 3 ปีที่แล้ว

      prouter.cpp:125:13: error: no matching member function for call to 'append'
      qbytearray.h:290:17: note: candidate function not viable: no known conversion from 'const QString' to 'char' for 1st argument
      qbytearray.h:292:17: note: candidate function not viable: no known conversion from 'const QString' to 'const char *' for 1st argument
      qbytearray.h:296:17: note: candidate function not viable: no known conversion from 'const QString' to 'const QByteArray' for 1st argument
      qbytearray.h:297:17: note: candidate function not viable: no known conversion from 'const QString' to 'QByteArrayView' for 1st argument
      qbytearray.h:615:32: note: candidate function not viable: requires 2 arguments, but 1 was provided
      qbytearray.h:294:17: note: candidate function not viable: requires 2 arguments, but 1 was provided

    • @VoidRealms
      @VoidRealms  3 ปีที่แล้ว +1

      convert it to a QString - note I normally dont respond on youtube, we have a facebook group names voidrealms with 4000+ developers

    • @elephoenix9880
      @elephoenix9880 3 ปีที่แล้ว

      @@VoidRealms thank you so much bro

  • @comedyclub333
    @comedyclub333 3 ปีที่แล้ว

    Bruh, since almost every system has ping on its path, shouldn't you just start "ping" as a QProcess instance instead of the operating systems shell and writing the ping command to it?

    • @VoidRealms
      @VoidRealms  3 ปีที่แล้ว

      There's a lot of different ways