I want to display the progress of my external application in the progressBar…..as I am new to Qt I am not aware how to proceed……kindly help me in this regard…..
void projectgui1::on_pushButton_clicked()
{
QString program = "test.exe";
QProcess *myProcess = new QProcess(this);
myProcess->start(program, 0);
return ;
}
i want the progressbar to show the progress of my test.exe…
↧