Click here to Skip to main content
15,891,375 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionAbout WM_KEYDOWN Pin
yourmom887-May-06 10:18
yourmom887-May-06 10:18 
AnswerRe: About WM_KEYDOWN Pin
Neville Franks7-May-06 11:35
Neville Franks7-May-06 11:35 
AnswerRe: About WM_KEYDOWN Pin
Russell'7-May-06 22:22
Russell'7-May-06 22:22 
Questionwhy small ball jump, background bmp jump too? Pin
alan top7-May-06 9:32
alan top7-May-06 9:32 
AnswerRe: why small ball jump, background bmp jump too? Pin
alan top7-May-06 22:52
alan top7-May-06 22:52 
QuestionConvert an unsigned int to char* Pin
ThiagoFragoso7-May-06 8:59
ThiagoFragoso7-May-06 8:59 
AnswerRe: Convert an unsigned int to char* Pin
alan top7-May-06 9:43
alan top7-May-06 9:43 
AnswerRe: Convert an unsigned int to char* Pin
Hamid_RT7-May-06 18:45
Hamid_RT7-May-06 18:45 
alan top :
<br />
void main()<br />
{<br />
unsigned int i = 123;<br />
char p[100];<br />
<br />
itoa(i, p, 10);<br />
printf("%s\n", p);<br />
}<br />

-----------and-----------------
	unsigned int a=100;
	char *buffer;
	buffer=(char*)LocalAlloc(LPTR,20);
	itoa(a,buffer,10);

/////and reverse///////
	unsigned int c;
	c=atoi(buffer);

	LocalFree(buffer);

AnswerRe: Convert an unsigned int to char* Pin
Laxman Auti7-May-06 18:47
Laxman Auti7-May-06 18:47 
AnswerRe: Convert an unsigned int to char* Pin
baldha rakesh7-May-06 20:37
baldha rakesh7-May-06 20:37 
QuestionProblem sockcore.cpp line 482 and 442 Pin
XStress7-May-06 7:59
XStress7-May-06 7:59 
AnswerRe: Problem sockcore.cpp line 482 and 442 Pin
led mike7-May-06 18:13
led mike7-May-06 18:13 
GeneralRe: Problem sockcore.cpp line 482 and 442 Pin
XStress7-May-06 20:57
XStress7-May-06 20:57 
GeneralRe: Problem sockcore.cpp line 482 and 442 Pin
led mike8-May-06 5:42
led mike8-May-06 5:42 
QuestionRemoving items unfer MFC Pin
dzldan7-May-06 6:19
dzldan7-May-06 6:19 
AnswerRe: Removing items unfer MFC Pin
Maxwell Chen7-May-06 6:33
Maxwell Chen7-May-06 6:33 
GeneralRe: Removing items unfer MFC Pin
dzldan7-May-06 7:23
dzldan7-May-06 7:23 
AnswerRe: Removing items unfer MFC Pin
Maxwell Chen7-May-06 8:19
Maxwell Chen7-May-06 8:19 
GeneralWTF ?! Pin
Maxwell Chen7-May-06 19:13
Maxwell Chen7-May-06 19:13 
QuestionHow can I get the ip that visiting my sharefolder Pin
Member 20063987-May-06 4:24
Member 20063987-May-06 4:24 
AnswerRe: How can I get the ip that visiting my sharefolder Pin
Milton Karimbekallil7-May-06 13:49
Milton Karimbekallil7-May-06 13:49 
GeneralRe: How can I get the ip that visiting my sharefolder Pin
Member 20063987-May-06 19:09
Member 20063987-May-06 19:09 
QuestionVideo frame grabbing & graphic library Pin
Mulligun0076-May-06 23:46
Mulligun0076-May-06 23:46 
AnswerRe: Video frame grabbing & graphic library Pin
Chris Losinger7-May-06 3:05
professionalChris Losinger7-May-06 3:05 
Questionc++ syntax: define an operator Pin
includeh106-May-06 22:10
includeh106-May-06 22:10 

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.