• 大小: 1.79MB
    文件类型: .rar
    金币: 2
    下载: 2 次
    发布日期: 2023-08-30
  • 语言: C/C++
  • 标签: socket编程  VC++  

资源简介

VC6.0++编写的计算器,里面的代码可以直接使用,非常方便的啦~~ 如果还需要socket编程课件啥的,欢迎留言!

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “calculator.h“
#include “calculatorDlg.h“

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

/////////////////////////////////////////////////////////////////////////////
// CCalculatorApp

BEGIN_MESSAGE_MAP(CCalculatorApp CWinApp)
//{{AFX_MSG_MAP(CCalculatorApp)
// 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()

/////////////////////////////////////////////////////////////////////////////
// CCalculatorApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CCalculatorApp object

CCalculatorApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CCalculatorApp initialization

BOOL CCalculatorApp::InitInstance()
{
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

CCalculatorDlg 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;
}

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

     文件      36648  2017-11-26 09:56  calculator\calculator.aps

     文件       1917  2017-11-26 10:31  calculator\calculator.clw

     文件       2119  2017-11-20 19:16  calculator\calculator.cpp

     文件       4231  2017-11-20 19:16  calculator\calculator.dsp

     文件        528  2017-11-20 19:16  calculator\calculator.dsw

     文件       1368  2017-11-20 19:16  calculator\calculator.h

     文件      58368  2017-11-26 11:03  calculator\calculator.ncb

     文件      48640  2017-11-26 11:03  calculator\calculator.opt

     文件        979  2017-11-26 10:31  calculator\calculator.plg

     文件       6722  2017-11-26 09:56  calculator\calculator.rc

     文件       9711  2017-11-26 10:30  calculator\calculatorDlg.cpp

     文件       1896  2017-11-23 15:10  calculator\calculatorDlg.h

     文件     114748  2017-11-26 10:31  calculator\Debug\calculator.exe

     文件     282852  2017-11-26 10:31  calculator\Debug\calculator.ilk

     文件      14233  2017-11-23 15:10  calculator\Debug\calculator.obj

     文件    5498340  2017-11-20 19:35  calculator\Debug\calculator.pch

     文件     386048  2017-11-26 10:31  calculator\Debug\calculator.pdb

     文件       3216  2017-11-26 09:56  calculator\Debug\calculator.res

     文件      50004  2017-11-26 10:31  calculator\Debug\calculatorDlg.obj

     文件     105452  2017-11-20 19:35  calculator\Debug\StdAfx.obj

     文件     214016  2017-11-26 10:31  calculator\Debug\vc60.idb

     文件     364544  2017-11-26 10:31  calculator\Debug\vc60.pdb

     文件       3651  2017-11-20 19:16  calculator\ReadMe.txt

     文件       1078  2017-11-20 19:16  calculator\res\calculator.ico

     文件        402  2017-11-20 19:16  calculator\res\calculator.rc2

     文件       1562  2017-11-23 15:10  calculator\resource.h

     文件        212  2017-11-20 19:16  calculator\StdAfx.cpp

     文件       1054  2017-11-20 19:16  calculator\StdAfx.h

     目录          0  2017-11-26 10:31  calculator\Debug

     目录          0  2017-11-20 19:16  calculator\res

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

评论

共有 条评论