Execution of application in the mentioned path
Unsolved
QML and Qt Quick
-
Hi,
I created an application where i displayed icons(.png images) using the Pathview . Now i can swipe through the icons.
Now i want to extend this this application little further.
If i click on any of the icon, based on the icon clicked (this i can get by index number) it should go to the specified folder and start executing the application (.exe file - which i created using qt-widget) in the specified folder through provided path.
MouseArea{ onClicked: // Not sure what to code here }```
-
@BhanuKiranChaluvadi Hi! You need to write a backend in C++ and expose it to QtQuick. The backend can use QProcess to start other programs.
-
@Wieland
Thanks for the reply.
I tried it today and was able to run an executable. -
@BhanuKiranChaluvadi Great! :)