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
Post a Comment