Click here to Skip to main content
15,887,350 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: how set a global message, same in all process. Pin
ThatsAlok1-Mar-06 2:39
ThatsAlok1-Mar-06 2:39 
AnswerRe: how set a global message, same in all process. Pin
Ryan Binns1-Mar-06 2:40
Ryan Binns1-Mar-06 2:40 
AnswerRe: how set a global message, same in all process. Pin
jhwurmbach1-Mar-06 3:00
jhwurmbach1-Mar-06 3:00 
QuestionClass Design Question Pin
ldsdbomber1-Mar-06 1:43
ldsdbomber1-Mar-06 1:43 
AnswerRe: Class Design Question Pin
walter761-Mar-06 2:17
walter761-Mar-06 2:17 
GeneralRe: Class Design Question Pin
ldsdbomber1-Mar-06 5:32
ldsdbomber1-Mar-06 5:32 
GeneralRe: Class Design Question Pin
walter761-Mar-06 5:38
walter761-Mar-06 5:38 
QuestionCracking console app that takes data to stdin. Pin
9ine1-Mar-06 1:02
9ine1-Mar-06 1:02 
I written win app to launch console app write data to it and read results from it thru pipes.

My Console app on launch from command line:
type numbers:
//I'm then typing floating point numbers
1.1\n
2.2\n
3.3\n
\032\n <------ ctrl-z and new line forcing console to stop reading
//produce some output

My win app:
creates pipes;
create process; //console app
write to stdinWPipe; //console read it from its end of pipe stdinRPipe
fprintf(stdinWPipe,"%f\n",numb[i]);
frpintf(stdinWPipe,"\032\n"); //write ctrl-z symbol
closehandle(stdinWPipe); //close write end of stdin pipe
closehandle(stdoutWPipe); //close write end of stdout pipe before read
ReadFile(stdoutRPipe, ...); //read from read end of stdout pipe

This all works fine with my test console app and my win app to launch it, write data to its stdin and read data from its stdout throu pipes.

But there is just executable console which I need to lunch the same mode.
After it is ran from just command prompt it behaves exactly the same as my test console app:
type numbers: //writing prompt for typing in
1.1\n //and all the same typing numbers
2.2\n
3.3\n
\032\n //ctrl+z + \n
//and then it outputs results

But when I run this unknown console app from my win app function ReadFile(stdoutRPipe,... ) hangs itself never returning?? That is no data written to stdoutWPipe from console app. Whats the hell??





9ine
AnswerRe: Cracking console app that takes data to stdin. Pin
RobJones1-Mar-06 3:31
RobJones1-Mar-06 3:31 
GeneralRe: Cracking console app that takes data to stdin. Pin
9ine1-Mar-06 5:39
9ine1-Mar-06 5:39 
QuestionConverting HWnd to CWnd Pin
whatever891-Mar-06 0:56
whatever891-Mar-06 0:56 
AnswerRe: Converting HWnd to CWnd Pin
Vinaya1-Mar-06 1:01
Vinaya1-Mar-06 1:01 
AnswerRe: Converting HWnd to CWnd Pin
Nibu babu thomas1-Mar-06 1:03
Nibu babu thomas1-Mar-06 1:03 
AnswerRe: Converting HWnd to CWnd Pin
walter761-Mar-06 1:04
walter761-Mar-06 1:04 
GeneralRe: Converting HWnd to CWnd Pin
whatever891-Mar-06 2:53
whatever891-Mar-06 2:53 
QuestionCombo box height is not increasing Pin
BiswaR1-Mar-06 0:51
BiswaR1-Mar-06 0:51 
AnswerRe: Combo box height is not increasing Pin
khan++1-Mar-06 1:26
khan++1-Mar-06 1:26 
GeneralRe: Combo box height is not increasing Pin
BiswaR1-Mar-06 1:48
BiswaR1-Mar-06 1:48 
GeneralRe: Combo box height is not increasing Pin
khan++1-Mar-06 2:19
khan++1-Mar-06 2:19 
QuestionLost my way in classes and array.. Pin
joostvaningen1-Mar-06 0:50
joostvaningen1-Mar-06 0:50 
QuestionRe: Lost my way in classes and array.. Pin
David Crow1-Mar-06 2:58
David Crow1-Mar-06 2:58 
GeneralRe: Lost my way in classes and array.. Pin
joostvaningen1-Mar-06 3:37
joostvaningen1-Mar-06 3:37 
AnswerRe: Lost my way in classes and array.. Pin
joostvaningen1-Mar-06 20:42
joostvaningen1-Mar-06 20:42 
QuestionFile load in memoery memory - then perform read write on that data Pin
zahid_ash1-Mar-06 0:29
zahid_ash1-Mar-06 0:29 
AnswerRe: File load in memoery memory - then perform read write on that data Pin
Naveen1-Mar-06 2:17
Naveen1-Mar-06 2:17 

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.