Click here to Skip to main content
15,889,462 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
JokeRe: My progremmer can't run,why?? Pin
CPallini11-May-10 11:44
mveCPallini11-May-10 11:44 
AnswerRe: My progremmer can't run,why?? Pin
Covean11-May-10 4:33
Covean11-May-10 4:33 
AnswerRe: My progremmer can't run,why?? Pin
Tim Craig11-May-10 17:34
Tim Craig11-May-10 17:34 
QuestionRound button with image Pin
AbhiHcl11-May-10 4:16
AbhiHcl11-May-10 4:16 
QuestionUnable to CreateFileMapping for Elivated User on Windows7 Version or Windows Vista Pin
janaswamy uday11-May-10 3:54
janaswamy uday11-May-10 3:54 
QuestionRe: Unable to CreateFileMapping for Elivated User on Windows7 Version or Windows Vista Pin
Randor 11-May-10 15:46
professional Randor 11-May-10 15:46 
Questionmy strcpy funcution! Pin
wbgxx11-May-10 3:47
wbgxx11-May-10 3:47 
AnswerRe: my strcpy funcution! Pin
wbgxx11-May-10 3:49
wbgxx11-May-10 3:49 
char *my_strcpy(char *p1, char *p2)
{
	if (p2 == NULL )
		return p1;
	if (p1 == NULL)
		return 0;
	else
		{
               
			char *pp1 = p1;
			char *pp2 = p2;
			while (p2 != '\0')
			{
				*p1++ = *p2++;
			}
			*pp1 = '\0';
		}
		
		return p1;
}

AnswerRe: my strcpy funcution! Pin
Jonathan Davies11-May-10 4:09
Jonathan Davies11-May-10 4:09 
GeneralRe: my strcpy funcution! Pin
wbgxx11-May-10 4:13
wbgxx11-May-10 4:13 
GeneralRe: my strcpy funcution! Pin
Maximilien11-May-10 4:26
Maximilien11-May-10 4:26 
GeneralRe: my strcpy funcution! Pin
Jonathan Davies11-May-10 4:26
Jonathan Davies11-May-10 4:26 
AnswerRe: my strcpy funcution! Pin
Richard MacCutchan11-May-10 5:17
mveRichard MacCutchan11-May-10 5:17 
AnswerRe: my strcpy funcution! Pin
David Crow12-May-10 3:01
David Crow12-May-10 3:01 
QuestionCDialog::PumpMessage hangs (endless WM_PAINT?) Pin
VictorSotnikov11-May-10 3:41
VictorSotnikov11-May-10 3:41 
Questionhow to use select() function with file descriptors on windows Pin
Vijay_Vijay11-May-10 1:04
Vijay_Vijay11-May-10 1:04 
AnswerRe: how to use select() function with file descriptors on windows Pin
Richard MacCutchan11-May-10 2:36
mveRichard MacCutchan11-May-10 2:36 
QuestionHow to Track the event in Excel for cell insert/delete in C++ or VC++ for ? Pin
Gaurav171011-May-10 0:28
Gaurav171011-May-10 0:28 
AnswerRe: How to Track the event in Excel for cell insert/delete in C++ or VC++ for ? Pin
Stuart Dootson11-May-10 0:44
professionalStuart Dootson11-May-10 0:44 
GeneralRe: How to Track the event in Excel for cell insert/delete in C++ or VC++ for ? Pin
KTTransfer11-May-10 18:19
KTTransfer11-May-10 18:19 
GeneralRe: How to Track the event in Excel for cell insert/delete in C++ or VC++ for ? Pin
Stuart Dootson11-May-10 23:24
professionalStuart Dootson11-May-10 23:24 
GeneralRe: How to Track the event in Excel for cell insert/delete in C++ or VC++ for ? Pin
Gaurav171012-May-10 1:34
Gaurav171012-May-10 1:34 
GeneralRe: How to Track the event in Excel for cell insert/delete in C++ or VC++ for ? Pin
Stuart Dootson12-May-10 2:01
professionalStuart Dootson12-May-10 2:01 
GeneralRe: How to Track the event in Excel for cell insert/delete in C++ or VC++ for ? Pin
Gaurav171012-May-10 2:04
Gaurav171012-May-10 2:04 
GeneralRe: How to Track the event in Excel for cell insert/delete in C++ or VC++ for ? Pin
Stuart Dootson12-May-10 2:15
professionalStuart Dootson12-May-10 2:15 

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.