Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hey all,

I want to run a program called "iphuc" and excute this command "-qo enterrecovery" in windows cmd. I do it manually by writing "iphuc -qo enterrecovery". But please i want it in QT with a cross platform code
please help.
Thanks in advance.
Posted
Updated 24-Jan-11 11:03am
v4
Comments
Christian Graus 24-Jan-11 17:43pm    
Do you though ?

1 solution

You can create a QApplication object and pass it the arguments. Then you can get them using the arguments() function.
 
Share this answer
 
Comments
Seif Hatem 25-Jan-11 3:37am    
Can you give ma a simple sample code for it because i've already tried it but no success
Thanks
XTAL256 27-Jan-11 18:54pm    
It should just be as simple as:

int main(int argc, char *argv[]) {
QApplication app(argc, argv);

QStringList theArgs = QApplication::arguments();
// Do stuff with args
//...
}

What exactly do you want to do with the arguments?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900