=====================================================================================
    			ClientSample 1.0
=====================================================================================

Development tool : Visual Studio 2008
Character Set : Use Multi-Byte Character Set

ClientSample is a simple client program. You are able to connect to a server.
You can see logs or receved data and send messages(CR, LF).

-------------------------------------------------------------------------------------
CEzSocket Class : Connection to server / communication with a server

void CEzSocket::OnConnect(int nErrorCode)
 - If you connect to server, this function called. And It call Connect function of main dialog.

void CEzSocket::OnReceive(int nErrorCode)
 - If you receive some data, this function called. And It call Receive function of main dialog.

-------------------------------------------------------------------------------------
CClientSampleDlg Class : Main dialog

void CClientSampleDlg::Connect(int nErrorCode)
 - After this function connects to server process results.

void CClientSampleDlg::Receive(CEzSocket *Socket, int nErrorCode)
 - Receved data insert the CEdit control.

void CClientSampleDlg::OnBnClickedButtonSend()
 - This function send data to a server. 
-------------------------------------------------------------------------------------