Click here to Skip to main content
15,924,367 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionHow to call Original value... Pin
Shah Satish1-Dec-06 1:46
Shah Satish1-Dec-06 1:46 
GeneralRe: How to call Original value... Pin
prasad_som1-Dec-06 1:50
prasad_som1-Dec-06 1:50 
GeneralRe: How to call Original value... Pin
Shah Satish1-Dec-06 2:10
Shah Satish1-Dec-06 2:10 
QuestionRe: How to call Original value... Pin
David Crow1-Dec-06 3:15
David Crow1-Dec-06 3:15 
AnswerRe: How to call Original value... Pin
Shah Satish1-Dec-06 3:42
Shah Satish1-Dec-06 3:42 
GeneralRe: How to call Original value... Pin
Cedric Moonen1-Dec-06 4:04
Cedric Moonen1-Dec-06 4:04 
QuestionSockets Programming Question Pin
risingtechie1-Dec-06 1:25
risingtechie1-Dec-06 1:25 
AnswerRe: Sockets Programming Question Pin
spielehelfer1-Dec-06 2:09
spielehelfer1-Dec-06 2:09 
Well this one is needed as far as I knnow to store the adress you want to listen, f.ex.
<br />
//adress buildup<br />
SOCKADDR_IN lSockAddr;<br />
memset(&lSockAddr,0, sizeof(lSockAddr));<br />
lSockAddr.sin_family = AF_INET;<br />
lSockAddr.sin_port = htons(8500);<br />
lSockAddr.sin_addr.s_addr = INADDR_ANY;

and afterwards you can check if all initialize went OK with
<br />
if(lSockAddr.sin_addr.s_addr ==INADDR_NONE)<br />
   //error<br />

AnswerRe: Sockets Programming Question Pin
risingtechie1-Dec-06 2:18
risingtechie1-Dec-06 2:18 
AnswerRe: Sockets Programming Question Pin
TheDelChop1-Dec-06 2:20
TheDelChop1-Dec-06 2:20 
GeneralLet me rephrase my question Pin
risingtechie1-Dec-06 2:40
risingtechie1-Dec-06 2:40 
GeneralRe: Let me rephrase my question Pin
Mike Dimmick1-Dec-06 4:42
Mike Dimmick1-Dec-06 4:42 
GeneralRe: Let me rephrase my question Pin
risingtechie1-Dec-06 5:50
risingtechie1-Dec-06 5:50 
AnswerRe: Sockets Programming Question Pin
Roger Stoltz1-Dec-06 2:42
Roger Stoltz1-Dec-06 2:42 
GeneralRe: Sockets Programming Question Pin
risingtechie1-Dec-06 2:48
risingtechie1-Dec-06 2:48 
QuestionHow to create icons from a font? Pin
Manfred Staiger1-Dec-06 1:20
Manfred Staiger1-Dec-06 1:20 
AnswerRe: How to create icons from a font? Pin
peterchen1-Dec-06 3:53
peterchen1-Dec-06 3:53 
GeneralRe: How to create icons from a font? Pin
Manfred Staiger1-Dec-06 4:03
Manfred Staiger1-Dec-06 4:03 
QuestionIs wchar_t only for unicode? Pin
Atul231-Dec-06 1:18
Atul231-Dec-06 1:18 
AnswerRe: Is wchar_t only for unicode? Pin
Christian Graus1-Dec-06 1:26
protectorChristian Graus1-Dec-06 1:26 
AnswerRe: Is wchar_t only for unicode? Pin
James R. Twine1-Dec-06 4:03
James R. Twine1-Dec-06 4:03 
QuestionProblem in returning value from the dll exported function Pin
DattaK1-Dec-06 1:12
DattaK1-Dec-06 1:12 
AnswerRe: Problem in returning value from the dll exported function Pin
Cedric Moonen1-Dec-06 1:56
Cedric Moonen1-Dec-06 1:56 
GeneralRe: Problem in returning value from the dll exported function Pin
DattaK1-Dec-06 2:10
DattaK1-Dec-06 2:10 
QuestionProblem in exporting a dll function Pin
DattaK1-Dec-06 1:11
DattaK1-Dec-06 1:11 

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.