Click here to Skip to main content
15,906,335 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
C++
//Server side
void CMFCExampleDlg::OnReceive(int nErrorCode)
{   
  recv(clientsocket,"200" , 1024, 0);
  m_name.SetVariable("gear","1");
}


//client side
BOOL CMFCClientDlg::PreTranslateMessage(MSG* pMsg)
{
  if(pMsg->lParam==VK_NUMLOCK)
    send(s,"200",1024,0);

  return 0;
}
Posted
Updated 8-May-13 0:38am
v2
Comments
CPallini 8-May-13 6:40am    
You didn't show enough code, in my opinion.
Cool Dude-P 8-May-13 6:44am    
these code are after connecting to server...
Richard MacCutchan 8-May-13 9:50am    
You are trying to receive data into a constant string that is only 4 bytes long, even though you have told the call that it's 1024. Provide a proper enpty buffer that the protocol can write into.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900