|
|
There are three functions( fun1, fun2, fun3), if I type they on prompt command line for running , you can run fun3 until type "Enter" after runing fun2 since there is "/r" afer executing fun1.
So my problem is that I want to let they running automatly , so how can I handled this
[/code]
run> fun1
run> fun2
dowload complete.... please type "enter" for continue
(fun3 can be run until you must type "enter" on prompt command line)
[/code]
At presents, I want to call they behind on backend as follow
[/code]
void Autoruning()
{
fun1();
fun2();
fun3();
}
run>Autoruning // my hope is that all of function should run nice NOT waiting or holding expect for typiong "enter" key
[code]
Thanks in advance and give your appreciation |
|