Just do the following modification, you should be all set. You should be calling show (instead of open), also required to modify the modality of the message box before showing it
msgBox.setWindowTitle("Loading ....");
msgBox.setText("Reading Files, please wait ...");
msgBox.setWindowModality(Qt::NonModal);
//msgBox.open();
msgBox.show();
// Run Stuff
msgBox.close();
QMessageBox msgBox(this);
msgBox.setWindowTitle("Loading ....");
msgBox.setText("Reading Files, please wait ...");
msgBox.setWindowModality(Qt::NonModal);
//msgBox.open();
msgBox.show();
// Run Stuff
msgBox.close();
To copy to clipboard, switch view to plain text mode
Bookmarks