Click here to Skip to main content
15,905,913 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralForeign language Support Pin
AlexEvans7-Apr-05 18:10
AlexEvans7-Apr-05 18:10 
GeneralRe: Foreign language Support Pin
Michael Dunn7-Apr-05 20:22
sitebuilderMichael Dunn7-Apr-05 20:22 
GeneralRe: Foreign language Support Pin
AlexEvans7-Apr-05 22:40
AlexEvans7-Apr-05 22:40 
GeneralRe: Foreign language Support Pin
ThatsAlok7-Apr-05 23:27
ThatsAlok7-Apr-05 23:27 
GeneralRe: Foreign language Support Pin
AlexEvans8-Apr-05 0:04
AlexEvans8-Apr-05 0:04 
GeneralRe: Foreign language Support Pin
Michael Dunn8-Apr-05 6:16
sitebuilderMichael Dunn8-Apr-05 6:16 
Questionbinding a socket to a particular interface? Pin
Gary Chapman7-Apr-05 17:53
Gary Chapman7-Apr-05 17:53 
Generalproblem about variable scope Pin
HeartFriend7-Apr-05 17:27
HeartFriend7-Apr-05 17:27 
int nVar = 0; //GlobalVar

int main(int argc, char* argv[])
{
int nTest1 = nVar;
int nVar = 1; //1stLevelLocalVar
nTest1 = nVar;
{
int nTest2 = ::nVar; // can acess global var, but how to access 1stLevelLocalVar
int nVar = 2; //n2ndLevelVar
nTest2 = nVar;
}
return 0;
}

GeneralRe: problem about variable scope Pin
Christian Graus7-Apr-05 17:35
protectorChristian Graus7-Apr-05 17:35 
GeneralRe: problem about variable scope Pin
Ryan Binns7-Apr-05 18:11
Ryan Binns7-Apr-05 18:11 
GeneralRe: problem about variable scope Pin
HeartFriend7-Apr-05 19:06
HeartFriend7-Apr-05 19:06 
GeneralRe: problem about variable scope Pin
cmk7-Apr-05 19:45
cmk7-Apr-05 19:45 
GeneralRe: problem about variable scope Pin
Michael Dunn7-Apr-05 20:28
sitebuilderMichael Dunn7-Apr-05 20:28 
GeneralRe: problem about variable scope Pin
S. Senthil Kumar7-Apr-05 21:58
S. Senthil Kumar7-Apr-05 21:58 
Questionhow to check if a reference is NULL Pin
ng kok chuan7-Apr-05 17:07
ng kok chuan7-Apr-05 17:07 
AnswerRe: how to check if a reference is NULL Pin
Ryan Binns7-Apr-05 18:14
Ryan Binns7-Apr-05 18:14 
GeneralRe: how to check if a reference is NULL Pin
ng kok chuan7-Apr-05 20:50
ng kok chuan7-Apr-05 20:50 
GeneralRe: how to check if a reference is NULL Pin
S. Senthil Kumar7-Apr-05 22:13
S. Senthil Kumar7-Apr-05 22:13 
QuestionHow to HitTest an item of a List Ctrl owned by another thread Pin
Luckybird7-Apr-05 16:23
Luckybird7-Apr-05 16:23 
AnswerRe: How to HitTest an item of a List Ctrl owned by another thread Pin
Ryan Binns7-Apr-05 18:18
Ryan Binns7-Apr-05 18:18 
GeneralRe: How to HitTest an item of a List Ctrl owned by another thread Pin
Luckybird7-Apr-05 23:29
Luckybird7-Apr-05 23:29 
GeneralRe: How to HitTest an item of a List Ctrl owned by another thread Pin
Ryan Binns8-Apr-05 2:12
Ryan Binns8-Apr-05 2:12 
Generalpliz help me with input validation Pin
mpapeo7-Apr-05 15:05
mpapeo7-Apr-05 15:05 
GeneralRe: pliz help me with input validation Pin
Christian Graus7-Apr-05 15:14
protectorChristian Graus7-Apr-05 15:14 
GeneralRe: pliz help me with input validation Pin
Anonymous7-Apr-05 15:35
Anonymous7-Apr-05 15:35 

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.