c++ - Open and show windows command prompt to user inside QT application -


how go opening windows command prompt sending command , showing user inside qt application?

i know can send commands command prompt , output "behind scenes" without showing command prompt user, want user able interact command prompt window , send own commands.

found needed:

qprocess commandprompt; qstringlist arguments;  arguments << "/k" << "echo" << "hello"; commandprompt.startdetached("cmd",arguments); 

Comments

Popular posts from this blog

css - I want to align grid in center -

Contact Form PHP Email Script -

python - SWIG function not printing output -