Click here to Skip to main content
15,914,795 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: problem in updating the icon Pin
Richard MacCutchan17-Feb-10 3:07
mveRichard MacCutchan17-Feb-10 3:07 
AnswerRe: problem in updating the icon Pin
HetzelGJ17-Feb-10 4:41
HetzelGJ17-Feb-10 4:41 
QuestionReading And Writing On The Same File Pin
jannathali16-Feb-10 21:24
jannathali16-Feb-10 21:24 
AnswerRe: Reading And Writing On The Same File Pin
«_Superman_»16-Feb-10 21:30
professional«_Superman_»16-Feb-10 21:30 
AnswerRe: Reading And Writing On The Same File Pin
KingsGambit16-Feb-10 21:50
KingsGambit16-Feb-10 21:50 
GeneralRe: Reading And Writing On The Same File Pin
vkpMark16-Feb-10 22:57
vkpMark16-Feb-10 22:57 
Questionremote sensing row image simulatetor Pin
a.jalaee16-Feb-10 20:07
a.jalaee16-Feb-10 20:07 
AnswerRe: remote sensing row image simulatetor Pin
KingsGambit16-Feb-10 21:09
KingsGambit16-Feb-10 21:09 
QuestionWhat is the value of Ctrl+Z in terms of CString? Pin
Le@rner16-Feb-10 19:43
Le@rner16-Feb-10 19:43 
AnswerRe: What is the value of Ctrl+Z in terms of CString? Pin
KingsGambit16-Feb-10 20:16
KingsGambit16-Feb-10 20:16 
GeneralRe: What is the value of Ctrl+Z in terms of CString? Pin
Le@rner16-Feb-10 20:17
Le@rner16-Feb-10 20:17 
GeneralRe: What is the value of Ctrl+Z in terms of CString? Pin
Mircea Puiu16-Feb-10 20:24
Mircea Puiu16-Feb-10 20:24 
GeneralRe: What is the value of Ctrl+Z in terms of CString? Pin
KingsGambit16-Feb-10 20:26
KingsGambit16-Feb-10 20:26 
GeneralRe: What is the value of Ctrl+Z in terms of CString? Pin
«_Superman_»16-Feb-10 21:31
professional«_Superman_»16-Feb-10 21:31 
GeneralRe: What is the value of Ctrl+Z in terms of CString? Pin
Le@rner16-Feb-10 22:13
Le@rner16-Feb-10 22:13 
GeneralRe: What is the value of Ctrl+Z in terms of CString? Pin
KingsGambit16-Feb-10 23:38
KingsGambit16-Feb-10 23:38 
GeneralRe: What is the value of Ctrl+Z in terms of CString? Pin
David Crow17-Feb-10 3:10
David Crow17-Feb-10 3:10 
AnswerRe: What is the value of Ctrl+Z in terms of CString? Pin
Cool_Dev17-Feb-10 22:19
Cool_Dev17-Feb-10 22:19 
AnswerRe: What is the value of Ctrl+Z in terms of CString? Pin
armecos22-Feb-10 16:55
armecos22-Feb-10 16:55 
QuestionCreateprocess in vc++ Pin
raj157616-Feb-10 19:19
raj157616-Feb-10 19:19 
hi all

I am using copy command in createprocess() but this is not working

I am writing following code but this is not working

AnsiString cmdpath = "copy /b c:\\000.mp3+c:\\001.mp3 c:\\out.mp3";

PROCESS_INFORMATION pInfo;
STARTUPINFOA sInfo;
DWORD exitCode;

memset (&sInfo, 0, sizeof(sInfo));
sInfo.cb = sizeof(sInfo);

sInfo.cb = sizeof(STARTUPINFOA);
sInfo.lpReserved = NULL;
sInfo.lpReserved2 = NULL;
sInfo.cbReserved2 = 0;
sInfo.lpDesktop = NULL;
sInfo.lpTitle = NULL;
sInfo.dwFlags = 0;
sInfo.dwX = 0;
sInfo.dwY = 0;
sInfo.dwFillAttribute = 0;
sInfo.wShowWindow = SW_FORCEMINIMIZE ;
ShowMessage(cmdpath);
CreateProcessA(NULL, cmdpath.c_str(), NULL, NULL, FALSE,NULL, NULL, NULL, &sInfo, &pInfo);
if(WaitForSingleObject(pInfo.hProcess,INFINITE)== WAIT_OBJECT_0)
{
ShowMessage("Success");
}
AnswerRe: Createprocess in vc++ Pin
KingsGambit16-Feb-10 19:42
KingsGambit16-Feb-10 19:42 
AnswerRe: Createprocess in vc++ Pin
Eugen Podsypalnikov16-Feb-10 19:43
Eugen Podsypalnikov16-Feb-10 19:43 
GeneralRe: Createprocess in vc++ Pin
raj157616-Feb-10 19:50
raj157616-Feb-10 19:50 
GeneralRe: Createprocess in vc++ Pin
Rozis17-Feb-10 10:06
Rozis17-Feb-10 10:06 
AnswerRe: Createprocess in vc++ Pin
Gary R. Wheeler21-Feb-10 2:16
Gary R. Wheeler21-Feb-10 2: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.