Click here to Skip to main content
15,920,596 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Timers in VC++ Pin
shilianghui218-May-06 22:11
shilianghui218-May-06 22:11 
GeneralRe: Timers in VC++ Pin
Trollslayer18-May-06 22:32
mentorTrollslayer18-May-06 22:32 
GeneralRe: Timers in VC++ Pin
Dennis Gourjii18-May-06 23:44
Dennis Gourjii18-May-06 23:44 
JokeRe: Timers in VC++ Pin
Nibu babu thomas19-May-06 0:14
Nibu babu thomas19-May-06 0:14 
GeneralRe: Timers in VC++ Pin
ThatsAlok19-May-06 1:56
ThatsAlok19-May-06 1:56 
AnswerRe: Timers in VC++ Pin
Nibu babu thomas18-May-06 22:11
Nibu babu thomas18-May-06 22:11 
AnswerRe: Timers in VC++ Pin
ThatsAlok19-May-06 1:58
ThatsAlok19-May-06 1:58 
Questionsockets in vc6 Pin
shuchigo_jane18-May-06 21:52
shuchigo_jane18-May-06 21:52 
wil the socket created here accept only a single request,n not process the subsequent ones listened to?found an error in the accept fxn(INVALID SOCKET)...


void CCsDlg::OnAccept()
{

CString strIP;
UINT port;
port=2000;
strIP="10.1.46.36";
if(m_sListener.Accept(m_sConnected))
{

m_sConnected.GetSockName(strIP,port);
UpdateData(TRUE);
}

else
{
AfxMessageBox("Cannot Accept Connection");
}
}
****************************************************************
m_sListener.Create(2000);
if(m_sListener.Listen()==FALSE)
{
AfxMessageBox("Unable to Listen on that port,please try another port");
m_sListener.Close();
return;
}

AnswerRe: sockets in vc6 Pin
Eytukan18-May-06 22:02
Eytukan18-May-06 22:02 
GeneralRe: sockets in vc6 Pin
shuchigo_jane18-May-06 22:14
shuchigo_jane18-May-06 22:14 
GeneralRe: sockets in vc6 Pin
Sarath C18-May-06 23:18
Sarath C18-May-06 23:18 
GeneralRe: sockets in vc6 Pin
shuchigo_jane18-May-06 23:25
shuchigo_jane18-May-06 23:25 
QuestionSingleton Class (C++) Pin
Scorpio18-May-06 21:51
Scorpio18-May-06 21:51 
AnswerRe: Singleton Class (C++) Pin
Cedric Moonen18-May-06 21:58
Cedric Moonen18-May-06 21:58 
GeneralRe: Singleton Class (C++) Pin
Stephen Hewitt18-May-06 22:06
Stephen Hewitt18-May-06 22:06 
GeneralRe: Singleton Class (C++) Pin
Cedric Moonen18-May-06 22:13
Cedric Moonen18-May-06 22:13 
AnswerRe: Singleton Class (C++) Pin
Maxwell Chen18-May-06 21:59
Maxwell Chen18-May-06 21:59 
GeneralRe: Singleton Class (C++) Pin
Scorpio18-May-06 22:01
Scorpio18-May-06 22:01 
QuestionHow to send SMS in VC++ Pin
MadBoyz18-May-06 21:22
MadBoyz18-May-06 21:22 
AnswerRe: How to send SMS in VC++ Pin
Cedric Moonen18-May-06 21:30
Cedric Moonen18-May-06 21:30 
GeneralRe: How to send SMS in VC++ Pin
MadBoyz18-May-06 21:39
MadBoyz18-May-06 21:39 
AnswerRe: How to send SMS in VC++ Pin
Hamid_RT18-May-06 21:31
Hamid_RT18-May-06 21:31 
AnswerRe: How to send SMS in VC++ Pin
Eytukan18-May-06 21:34
Eytukan18-May-06 21:34 
GeneralRe: How to send SMS in VC++ Pin
Rajesh R Subramanian18-May-06 22:09
professionalRajesh R Subramanian18-May-06 22:09 
AnswerRe: How to send SMS in VC++ Pin
Hamid_RT18-May-06 21:34
Hamid_RT18-May-06 21:34 

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.