Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6112315
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T14:43:53+00:00 2026-05-23T14:43:53+00:00

I am working on building a GUI around a console application. I would like

  • 0

I am working on building a GUI around a console application. I would like to be able to click a button to run the console app and show the console output inside of the GUI itself. How might I accomplish this? I am working in Linux.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T14:43:54+00:00Added an answer on May 23, 2026 at 2:43 pm

    You could also try QProcess. It provides a Qt interface to launching external processes, reading their I/O and waiting, or not, on their completion.

    For your purpose, it sounds like you want the process to run asynchronously, so code might look like :

    myprocessstarter.h :

    #include <QObject>
    #include <QProcess>
    #include <QDebug>
    
    
    class MyProcessStarter : public QObject
    {
        Q_OBJECT
    public:
        MyProcessStarter() : QObject() {};
        void StartProcess();
    private slots:
        void readStandardOutput();
    private:
        QProcess *myProcess;
    };
    

    main.cpp:

    #include "myprocessstarter.h"
    
    void MyProcessStarter::StartProcess()
    {
        QString program = "dir";
        QStringList arguments;
        // Add any arguments you want to be passed
    
        myProcess = new QProcess(this);
        connect(myProcess, SIGNAL(readyReadStandardOutput()), this, SLOT(readStandardOutput()));
        myProcess->start(program, arguments);
    }
    
    void MyProcessStarter::readStandardOutput()
    {
        QByteArray processOutput;
        processOutput = myProcess->readAllStandardOutput();
    
        qDebug() << "Output was " << QString(processOutput);
    }
    
    void main(int argc, char** argv)
    {
        MyProcessStarter s;
        s.StartProcess();
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm working on building a Silverlight application whereas we want to be able to
I've recently begun working on a project regarding GUI building using some form of
I'm currently working on building a java web app. I've been looking to use
I'm working on building an iPhone app with Titanium Mobile 1.0 and I see
I'm building a Java application with a Swing GUI and a task that takes
I'm currently working on building an application in CakePHP. There's a quite extensive existing
Background I'm working on building an ASP.Net MVC 3 application that utilizes: JQueryUI for
I'm building a fairly complicated GUI for a project I'm working on. Importantly, it
I am working on building an iPhone application that uses an external server to
I am working on building an application for a banking institution where the accuracy

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.