How to call .exe file ?
-
Hi Friends How to call one external .EXE file using MFC ?give any urls r something.... Thanks 'N' Advance :rose:Nisha.S
-
Hi Friends How to call one external .EXE file using MFC ?give any urls r something.... Thanks 'N' Advance :rose:Nisha.S
use
ShellExecute()
orCreateProcess()
functions.nave [OpenedFileFinder]
-
Hi Friends How to call one external .EXE file using MFC ?give any urls r something.... Thanks 'N' Advance :rose:Nisha.S
-
Hi Friends How to call one external .EXE file using MFC ?give any urls r something.... Thanks 'N' Advance :rose:Nisha.S
use
ShellExecute()
method.ShellExecute(handle, _T("open"), <fully_qualified_path_to_folder>, NULL, NULL, SW_SHOWNORMAL);
Mukesh Kumar Software Engineer
-
Hi Friends How to call one external .EXE file using MFC ?give any urls r something.... Thanks 'N' Advance :rose:Nisha.S
::ShellExecuteEx(LPSHELLEXECUTEINFO lpExecInfo); may be this can help you. YOu can launch any exe file using this function and filling the structure.
-
Hi Friends How to call one external .EXE file using MFC ?give any urls r something.... Thanks 'N' Advance :rose:Nisha.S
Use ShellExecute
-@SuDhIrKuMaR@-
-
Hi Friends How to call one external .EXE file using MFC ?give any urls r something.... Thanks 'N' Advance :rose:Nisha.S
nisha00000 wrote:
give any urls r something
-
Use ShellExecute
-@SuDhIrKuMaR@-
Please read the previous answers before posting. This has already been said three times before X|
Cédric Moonen Software developer
Charting control [v1.4] -
Please read the previous answers before posting. This has already been said three times before X|
Cédric Moonen Software developer
Charting control [v1.4]Do you know toxxct? ;P
-
Do you know toxxct? ;P
Soon he will come and his wrath will be terrible :)
Cédric Moonen Software developer
Charting control [v1.4] -
Soon he will come and his wrath will be terrible :)
Cédric Moonen Software developer
Charting control [v1.4]Cedric Moonen wrote:
Soon he will come and his wrath will be terrible
Yeah Im agree with you. :laugh:
-
Soon he will come and his wrath will be terrible :)
Cédric Moonen Software developer
Charting control [v1.4]toxxct ? who's that ? :cool:
[VisualCalc][Binary Guide][CommDialogs] | [Forums Guidelines]
-
toxxct ? who's that ? :cool:
[VisualCalc][Binary Guide][CommDialogs] | [Forums Guidelines]
Your dark side maybe ? :rolleyes:
Cédric Moonen Software developer
Charting control [v1.4] -
Your dark side maybe ? :rolleyes:
Cédric Moonen Software developer
Charting control [v1.4]ah, it was meant darkcct ? ^^
[VisualCalc][Binary Guide][CommDialogs] | [Forums Guidelines]
-
Hi Friends How to call one external .EXE file using MFC ?give any urls r something.... Thanks 'N' Advance :rose:Nisha.S
http://msdn.microsoft.com/en-us/library/bb762153(VS.85).aspx http://www.developerfusion.co.uk/show/9/2/ http://msdn.microsoft.com/en-us/library/bb762154.aspx Best suitable : SHELLEXECUTEINFO info; memset(&info, 0, sizeof(SHELLEXECUTEINFO)); info.cbSize = sizeof(SHELLEXECUTEINFO); info.fMask = SEE_MASK_FLAG_NO_UI; info.lpVerb = _T ("open"); info.lpFile = sLink; // File Path... info.nShow = SW_SHOW; return :hellExecuteEx( &info ); Welcome in Advance... :-D
Jagdish Bhimbha
-
Hi Friends How to call one external .EXE file using MFC ?give any urls r something.... Thanks 'N' Advance :rose:Nisha.S
You might read here first.
"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