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

C / C++ / MFC

 
GeneralRe: IHTMLDocument2 for Table Par Pin
NaveenHS20-Oct-09 2:21
NaveenHS20-Oct-09 2:21 
QuestionC++ Pin
john curtin14-Oct-09 23:46
john curtin14-Oct-09 23:46 
AnswerRe: C++ Pin
Richard MacCutchan15-Oct-09 0:00
mveRichard MacCutchan15-Oct-09 0:00 
AnswerRe: C++ Pin
CPallini15-Oct-09 0:06
mveCPallini15-Oct-09 0:06 
GeneralRe: C++ Pin
Richard MacCutchan15-Oct-09 0:35
mveRichard MacCutchan15-Oct-09 0:35 
GeneralRe: C++ Pin
Tim Craig15-Oct-09 19:06
Tim Craig15-Oct-09 19:06 
QuestionI/O files Pin
programmer20214-Oct-09 23:26
programmer20214-Oct-09 23:26 
AnswerRe: I/O files Pin
Richard MacCutchan14-Oct-09 23:38
mveRichard MacCutchan14-Oct-09 23:38 
muestra = getc(leer_datos) ;
if (muestra == '|')
    {
  fgets(muestra, sizeof(muestra), leer_datos);
      fputs(muestra, escribir_datos);
  fputs("\n", escribir_datos);
}

In the above code if the first character is NOT '|' you still have the remainder of the line of text to read next time round the loop. It would be better to read each line into muestra and just test the first character if (muestra[0] == '|') ...
QuestionRe: I/O files Pin
David Crow15-Oct-09 3:20
David Crow15-Oct-09 3:20 
QuestionMaximum client count of TCP/IP Pin
includeh1014-Oct-09 23:13
includeh1014-Oct-09 23:13 
AnswerRe: Maximum client count of TCP/IP Pin
Richard MacCutchan14-Oct-09 23:40
mveRichard MacCutchan14-Oct-09 23:40 
GeneralRe: Maximum client count of TCP/IP Pin
includeh1014-Oct-09 23:44
includeh1014-Oct-09 23:44 
RantRe: Maximum client count of TCP/IP Pin
Rajesh R Subramanian14-Oct-09 23:56
professionalRajesh R Subramanian14-Oct-09 23:56 
GeneralRe: Maximum client count of TCP/IP Pin
Richard MacCutchan15-Oct-09 0:35
mveRichard MacCutchan15-Oct-09 0:35 
GeneralRe: Maximum client count of TCP/IP Pin
Richard MacCutchan15-Oct-09 0:03
mveRichard MacCutchan15-Oct-09 0:03 
GeneralRe: Maximum client count of TCP/IP Pin
Dan Neely15-Oct-09 2:49
Dan Neely15-Oct-09 2:49 
GeneralRe: Maximum client count of TCP/IP Pin
Richard MacCutchan15-Oct-09 4:34
mveRichard MacCutchan15-Oct-09 4:34 
RantYou are very stupid, indeed. Pin
CPallini15-Oct-09 0:09
mveCPallini15-Oct-09 0:09 
AnswerRe: Maximum client count of TCP/IP Pin
cmk15-Oct-09 3:08
cmk15-Oct-09 3:08 
Question[Message Deleted] Pin
includeh1014-Oct-09 22:52
includeh1014-Oct-09 22:52 
AnswerRe: Client count of TCP/IP [modified] Pin
Rajesh R Subramanian14-Oct-09 23:00
professionalRajesh R Subramanian14-Oct-09 23:00 
GeneralOT Pin
CPallini14-Oct-09 23:03
mveCPallini14-Oct-09 23:03 
GeneralRe: OT Pin
Rajesh R Subramanian14-Oct-09 23:08
professionalRajesh R Subramanian14-Oct-09 23:08 
GeneralRe: Client count of TCP/IP Pin
includeh1014-Oct-09 23:17
includeh1014-Oct-09 23:17 
GeneralRe: Client count of TCP/IP Pin
CPallini14-Oct-09 23:59
mveCPallini14-Oct-09 23:59 

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.