• 大小: 67.83 KB
    文件类型: .rar
    金币: 2
    下载: 0 次
    发布日期: 2024-07-27
  • 语言: 其他
  • 标签: mfc  网络  聊天室  

资源简介

mfc聊天室程序,私聊和屏蔽功能,简单

资源截图

代码片段和文件信息

// ChatSrv.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “ChatSrv.h“
#include “ChatSrvDlg.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CChatSrvApp

BEGIN_MESSAGE_MAP(CChatSrvApp CWinApp)
//{{AFX_MSG_MAP(CChatSrvApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CChatSrvApp construction

CChatSrvApp::CChatSrvApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CChatSrvApp object

CChatSrvApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CChatSrvApp initialization

BOOL CChatSrvApp::InitInstance()
{
if (!AfxSocketInit())
{
AfxMessageBox(IDP_SOCKETS_INIT_FAILED);
return FALSE;
}

AfxEnableControlContainer();

// Standard initialization
// If you are not using these features and wish to reduce the size
//  of your final executable you should remove from the following
//  the specific initialization routines you do not need.

#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif

CChatSrvDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
//  dismissed with Cancel
}

// Since the dialog has been closed return FALSE so that we exit the
//  application rather than start the application‘s message pump.
return FALSE;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      32768  2007-06-04 00:16  mfc聊天室\相关文档.doc

     文件      54784  2007-06-04 00:16  mfc聊天室\ChatSrv\ChatSrv.opt

     文件        747  2006-11-13 10:39  mfc聊天室\ChatSrv\ChatSrv.dsw

     文件       6046  2007-06-04 00:14  mfc聊天室\ChatSrv\ChatSrv.rc

     文件      36296  2007-06-04 00:14  mfc聊天室\ChatSrv\ChatSrv.aps

     文件       1390  2007-06-04 00:16  mfc聊天室\ChatSrv\ChatSrv.clw

     文件       3597  2006-11-12 23:05  mfc聊天室\ChatSrv\ReadMe.txt

     文件       1335  2006-11-12 23:05  mfc聊天室\ChatSrv\ChatSrv.h

     文件       2171  2006-11-12 23:05  mfc聊天室\ChatSrv\ChatSrv.cpp

     文件       2172  2007-06-04 00:13  mfc聊天室\ChatSrv\ChatSrvDlg.h

     文件       1102  2006-11-12 23:05  mfc聊天室\ChatSrv\StdAfx.h

     文件        209  2006-11-12 23:05  mfc聊天室\ChatSrv\StdAfx.cpp

     文件        960  2007-06-04 00:14  mfc聊天室\ChatSrv\Resource.h

     文件      11542  2007-06-04 00:13  mfc聊天室\ChatSrv\ChatSrvDlg.cpp

     文件      82944  2007-06-04 00:16  mfc聊天室\ChatSrv\ChatSrv.ncb

     文件        248  2007-06-04 00:15  mfc聊天室\ChatSrv\ChatSrv.plg

     文件       4181  2006-11-12 23:24  mfc聊天室\ChatSrv\ChatSrv.dsp

     文件        399  2006-11-12 23:05  mfc聊天室\ChatSrv\res\ChatSrv.rc2

     文件       1078  2006-11-12 23:05  mfc聊天室\ChatSrv\res\ChatSrv.ico

     文件       2274  2007-06-04 00:16  mfc聊天室\ChatSrv\ChatClinet\ChatClinet.clw

     文件       3651  2006-11-13 10:39  mfc聊天室\ChatSrv\ChatClinet\ReadMe.txt

     文件       1386  2006-11-14 14:43  mfc聊天室\ChatSrv\ChatClinet\ChatClinet.h

     文件       2213  2006-11-13 10:39  mfc聊天室\ChatSrv\ChatClinet\ChatClinet.cpp

     文件       7173  2007-06-04 00:13  mfc聊天室\ChatSrv\ChatClinet\ChatClinet.rc

     文件       4366  2007-03-09 11:27  mfc聊天室\ChatSrv\ChatClinet\ChatClinet.dsp

     文件       1102  2006-11-13 10:39  mfc聊天室\ChatSrv\ChatClinet\StdAfx.h

     文件        212  2006-11-13 10:39  mfc聊天室\ChatSrv\ChatClinet\StdAfx.cpp

     文件      37312  2007-06-04 00:13  mfc聊天室\ChatSrv\ChatClinet\ChatClinet.aps

     文件       1243  2006-11-15 14:27  mfc聊天室\ChatSrv\ChatClinet\CPrivateDlg.h

     文件       1422  2007-06-03 21:41  mfc聊天室\ChatSrv\ChatClinet\Resource.h

............此处省略15个文件信息

评论

共有 条评论