Click here to Skip to main content
15,910,009 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
JokeRe: How to call .exe file ? Pin
Hamid_RT9-Jun-08 20:38
Hamid_RT9-Jun-08 20:38 
GeneralRe: How to call .exe file ? Pin
Cedric Moonen9-Jun-08 20:39
Cedric Moonen9-Jun-08 20:39 
GeneralRe: How to call .exe file ? Pin
Hamid_RT9-Jun-08 20:47
Hamid_RT9-Jun-08 20:47 
JokeRe: How to call .exe file ? Pin
toxcct9-Jun-08 21:04
toxcct9-Jun-08 21:04 
JokeRe: How to call .exe file ? Pin
Cedric Moonen9-Jun-08 21:08
Cedric Moonen9-Jun-08 21:08 
JokeRe: How to call .exe file ? Pin
toxcct9-Jun-08 21:19
toxcct9-Jun-08 21:19 
AnswerRe: How to call .exe file ? Pin
Hamid_RT9-Jun-08 20:17
Hamid_RT9-Jun-08 20:17 
AnswerRe: How to call .exe file ? Pin
Jagdish V. Bhimbha9-Jun-08 21:31
Jagdish V. Bhimbha9-Jun-08 21:31 
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... Big Grin | :-D

Jagdish Bhimbha

AnswerRe: How to call .exe file ? Pin
David Crow10-Jun-08 3:33
David Crow10-Jun-08 3:33 
QuestionMSVCRP90D.dll Problem. Pin
T.RATHA KRISHNAN9-Jun-08 18:17
T.RATHA KRISHNAN9-Jun-08 18:17 
AnswerRe: MSVCRP90D.dll Problem. Pin
Akt_4_U9-Jun-08 18:19
Akt_4_U9-Jun-08 18:19 
GeneralRe: MSVCRP90D.dll Problem. [modified] Pin
T.RATHA KRISHNAN9-Jun-08 18:26
T.RATHA KRISHNAN9-Jun-08 18:26 
GeneralRe: MSVCRP90D.dll Problem. Pin
Akt_4_U9-Jun-08 18:38
Akt_4_U9-Jun-08 18:38 
AnswerRe: MSVCRP90D.dll Problem. Pin
Naveen9-Jun-08 18:46
Naveen9-Jun-08 18:46 
QuestionRe: MSVCRP90D.dll Problem. Pin
T.RATHA KRISHNAN9-Jun-08 18:53
T.RATHA KRISHNAN9-Jun-08 18:53 
AnswerRe: MSVCRP90D.dll Problem. Pin
Naveen9-Jun-08 19:03
Naveen9-Jun-08 19:03 
QuestionRe: MSVCRP90D.dll Problem. Pin
T.RATHA KRISHNAN9-Jun-08 19:08
T.RATHA KRISHNAN9-Jun-08 19:08 
AnswerRe: MSVCRP90D.dll Problem. Pin
Naveen9-Jun-08 19:13
Naveen9-Jun-08 19:13 
QuestionRe: MSVCRP90D.dll Problem. Pin
T.RATHA KRISHNAN9-Jun-08 19:27
T.RATHA KRISHNAN9-Jun-08 19:27 
AnswerRe: MSVCRP90D.dll Problem. Pin
Naveen9-Jun-08 19:38
Naveen9-Jun-08 19:38 
GeneralRe: MSVCRP90D.dll Problem. Pin
T.RATHA KRISHNAN9-Jun-08 19:49
T.RATHA KRISHNAN9-Jun-08 19:49 
GeneralRe: MSVCRP90D.dll Problem. Pin
Naveen9-Jun-08 20:31
Naveen9-Jun-08 20:31 
QuestionBMP file to be written to an AVI file Pin
vidya1109-Jun-08 17:30
vidya1109-Jun-08 17:30 
AnswerRe: BMP file to be written to an AVI file Pin
Naveen9-Jun-08 17:48
Naveen9-Jun-08 17:48 
AnswerRe: BMP file to be written to an AVI file Pin
Hamid_RT9-Jun-08 20:16
Hamid_RT9-Jun-08 20:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.