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

C / C++ / MFC

 
GeneralRe: Problem with CRgn Pin
Nibu babu thomas24-May-06 1:13
Nibu babu thomas24-May-06 1:13 
GeneralRe: Problem with CRgn Pin
Hamid_RT24-May-06 1:20
Hamid_RT24-May-06 1:20 
QuestionSerial port Communication Pin
Jeeva Mary Varghese23-May-06 20:56
Jeeva Mary Varghese23-May-06 20:56 
AnswerRe: Serial port Communication Pin
Cedric Moonen23-May-06 21:40
Cedric Moonen23-May-06 21:40 
GeneralRe: Serial port Communication Pin
Jeeva Mary Varghese24-May-06 21:06
Jeeva Mary Varghese24-May-06 21:06 
GeneralRe: Serial port Communication Pin
Cedric Moonen28-May-06 3:15
Cedric Moonen28-May-06 3:15 
QuestionWhy CreateProcess() returns error? Pin
ziashahid23-May-06 20:44
ziashahid23-May-06 20:44 
AnswerRe: Why CreateProcess() returns error? Pin
Hamid_RT23-May-06 21:11
Hamid_RT23-May-06 21:11 
try this
<br />
PROCESS_INFORMATION ProcessInfo;<br />
STARTUPINFO StartupInfo;<br />
<br />
ZeroMemory(&StartupInfo, sizeof(STARTUPINFO));<br />
<br />
StartupInfo.cb = sizeof(STARTUPINFO);<br />
StartupInfo.dwFlags = STARTF_USESHOWWINDOW;<br />
StartupInfo.wShowWindow = SW_SHOWMAXIMIZED;<br />
<br />
CreateProcess(NULL, <br />
"Notepad.exe", <br />
NULL, <br />
NULL, <br />
FALSE,<br />
DETACHED_PROCESS,<br />
NULL,<br />
NULL,<br />
&StartupInfo,<br />
&ProcessInfo);<br />



whitesky


QuestionConvert Host name to IP address Pin
Ayesha Farheen23-May-06 20:34
Ayesha Farheen23-May-06 20:34 
AnswerRe: Convert Host name to IP address [modified] Pin
Nibu babu thomas23-May-06 20:44
Nibu babu thomas23-May-06 20:44 
AnswerRe: Convert Host name to IP address Pin
ThatsAlok23-May-06 21:15
ThatsAlok23-May-06 21:15 
QuestionSimple Calculator with stack and postfix in C++ Pin
Mannouz23-May-06 20:29
Mannouz23-May-06 20:29 
AnswerRe: Simple Calculator with stack and postfix in C++ Pin
ThatsAlok23-May-06 20:32
ThatsAlok23-May-06 20:32 
GeneralRe: Simple Calculator with stack and postfix in C++ Pin
toxcct23-May-06 21:24
toxcct23-May-06 21:24 
JokeRe: Simple Calculator with stack and postfix in C++ Pin
Nibu babu thomas23-May-06 21:27
Nibu babu thomas23-May-06 21:27 
GeneralRe: Simple Calculator with stack and postfix in C++ Pin
BadKarma23-May-06 21:47
BadKarma23-May-06 21:47 
JokeRe: Simple Calculator with stack and postfix in C++ Pin
Nibu babu thomas23-May-06 21:51
Nibu babu thomas23-May-06 21:51 
GeneralRe: Simple Calculator with stack and postfix in C++ Pin
ThatsAlok23-May-06 22:26
ThatsAlok23-May-06 22:26 
JokeRe: Simple Calculator with stack and postfix in C++ Pin
Nibu babu thomas23-May-06 22:29
Nibu babu thomas23-May-06 22:29 
GeneralRe: Simple Calculator with stack and postfix in C++ Pin
toxcct24-May-06 0:48
toxcct24-May-06 0:48 
AnswerRe: Simple Calculator with stack and postfix in C++ Pin
Hamid_RT23-May-06 21:08
Hamid_RT23-May-06 21:08 
GeneralRe: Simple Calculator with stack and postfix in C++ Pin
ThatsAlok23-May-06 21:43
ThatsAlok23-May-06 21:43 
GeneralRe: Simple Calculator with stack and postfix in C++ Pin
Hamid_RT23-May-06 21:51
Hamid_RT23-May-06 21:51 
GeneralRe: Simple Calculator with stack and postfix in C++ Pin
toxcct23-May-06 22:31
toxcct23-May-06 22:31 
QuestionPDF Pin
jimlsq23-May-06 20:13
jimlsq23-May-06 20:13 

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.