Dialog bo shouldn't show up..
-
Hi all, I want to make a application in which when i click on my exe some files get copied to a specified path and after coping those file one of those files get executed. But i don't want any dialog box to be displayed or anything else to be displayed.... How an i do this??? Thanks in advance
-
Hi all, I want to make a application in which when i click on my exe some files get copied to a specified path and after coping those file one of those files get executed. But i don't want any dialog box to be displayed or anything else to be displayed.... How an i do this??? Thanks in advance
Ever heard of Console Application[^]
Regards, Aamir My Articles
-
Hi all, I want to make a application in which when i click on my exe some files get copied to a specified path and after coping those file one of those files get executed. But i don't want any dialog box to be displayed or anything else to be displayed.... How an i do this??? Thanks in advance
You can pass the names of the files and the path [where you want to copy the files to] as arguments to your application and then use ShellExecute to execute the file you want to. See for how you can use command line arguments.
Somethings seem HARD to do, until we know how to do them. ;-)_AnShUmAn_
-
Hi all, I want to make a application in which when i click on my exe some files get copied to a specified path and after coping those file one of those files get executed. But i don't want any dialog box to be displayed or anything else to be displayed.... How an i do this??? Thanks in advance
Create a hidden window. :)
If the Lord God Almighty had consulted me before embarking upon the Creation, I would have recommended something simpler. -- Alfonso the Wise, 13th Century King of Castile.
This is going on my arrogant assumptions. You may have a superb reason why I'm completely wrong. -- Iain Clarke -
Hi all, I want to make a application in which when i click on my exe some files get copied to a specified path and after coping those file one of those files get executed. But i don't want any dialog box to be displayed or anything else to be displayed.... How an i do this??? Thanks in advance
Just make a straight Win32 application and don't show a dialog or window.
Steve
-
Hi all, I want to make a application in which when i click on my exe some files get copied to a specified path and after coping those file one of those files get executed. But i don't want any dialog box to be displayed or anything else to be displayed.... How an i do this??? Thanks in advance
neha.agarwal27 wrote:
But i don't want any dialog box to be displayed or anything else to be displayed....
Copying files does not cause any UI components to be displayed.
"Love people and use things, not love things and use people." - Unknown
"To have a respect for ourselves guides our morals; to have deference for others governs our manners." - Laurence Sterne
-
Hi all, I want to make a application in which when i click on my exe some files get copied to a specified path and after coping those file one of those files get executed. But i don't want any dialog box to be displayed or anything else to be displayed.... How an i do this??? Thanks in advance
You can use of a batch for run that exe file and also you can make a hidden dialog with ShowWindow(SW_HIDE).