• 大小: 16.35MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-07-25
  • 语言: C/C++
  • 标签: c++  

资源简介

c++英语小词典,刚入门的会用到,主要就是针对英语小词典,数据库不全,可以自己在添加,自己连接好就没有问题

资源截图

代码片段和文件信息

// danciadd.cpp : implementation file
//

#include “stdafx.h“
#include “SuccessDictionary.h“
#include “danciadd.h“
#include “danciset.h“

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

/////////////////////////////////////////////////////////////////////////////
// Cdanciadd dialog


Cdanciadd::Cdanciadd(CWnd* pParent /*=NULL*/)
: CDialog(Cdanciadd::IDD pParent)
{
//{{AFX_DATA_INIT(Cdanciadd)
m_Englishdanci = _T(““);
m_Chinesedanci = _T(““);
//}}AFX_DATA_INIT
}


void Cdanciadd::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(Cdanciadd)
DDX_Text(pDX IDC_EDIT1 m_Englishdanci);
DDX_Text(pDX IDC_EDIT2 m_Chinesedanci);
//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(Cdanciadd CDialog)
//{{AFX_MSG_MAP(Cdanciadd)
ON_BN_CLICKED(IDOK OnOk)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// Cdanciadd message handlers

void Cdanciadd::OnOk() 
{
// TODO: Add your control notification handler code here
UpdateData(TRUE);

if(m_Englishdanci.IsEmpty())
{
::MessageBox(NULL “English not kong!“ “add English“ MB_OK|MB_ICONINFORMATION|MB_TASKMODAL);
return;
}

Cdanciset danciset;
TRY
{
if (!danciset.Open(CRecordset::dynaset NULL CRecordset::appendOnly))
{
::MessageBox(NULL “open base failed!“ “base operator“ MB_OK|MB_ICONEXCLAMATION);
return;
}
if(!danciset.CanAppend())
{
::MessageBox(NULL “record can not operator“ “base operator“ MB_OK|MB_ICONEXCLAMATION);
return;
}
danciset.AddNew();
danciset.m_danci= m_Englishdanci;
danciset.m_dancifanyi= m_Chinesedanci;
danciset.Update();

danciset.Close();
}
CATCH_ALL(e)
{
e->ReportError();
if (danciset.IsOpen())
{
danciset.Close();
}
::MessageBox(NULL “search base failed!“ “base operator“ MB_OK|MB_ICONEXCLAMATION);
return;
}
END_CATCH_ALL

UpdateData(FALSE);
CDialog::OnOK();
}

void Cdanciadd::OnCancel() 
{
// TODO: Add extra cleanup here
CDialog::OnCancel();
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-09-10 14:54  英语词典\
     目录           0  2013-09-10 14:54  英语词典\Debug\
     文件      107649  2012-10-17 14:41  英语词典\Debug\StdAfx.obj
     文件     5677116  2013-03-25 16:41  英语词典\Debug\SuccessDictionary.exe
     文件      370908  2013-03-25 16:41  英语词典\Debug\SuccessDictionary.ilk
     文件       15363  2012-10-17 14:41  英语词典\Debug\SuccessDictionary.obj
     文件     5727416  2012-10-17 14:41  英语词典\Debug\SuccessDictionary.pch
     文件      549888  2013-03-25 16:41  英语词典\Debug\SuccessDictionary.pdb
     文件     4580512  2012-10-20 09:22  英语词典\Debug\SuccessDictionary.res
     文件       62622  2012-10-20 09:09  英语词典\Debug\SuccessDictionaryDlg.obj
     文件       21442  2012-10-17 14:41  英语词典\Debug\danciadd.obj
     文件       36988  2012-10-17 14:41  英语词典\Debug\dancidlg.obj
     文件       23742  2012-10-17 14:41  英语词典\Debug\danciedit.obj
     文件       21918  2012-10-17 14:41  英语词典\Debug\dancilijuadddlg.obj
     文件       37923  2012-10-17 14:41  英语词典\Debug\dancilijudlg.obj
     文件       23746  2012-10-19 14:33  英语词典\Debug\dancilijueditdlg.obj
     文件       14466  2012-10-19 10:31  英语词典\Debug\dancilijuset.obj
     文件       14238  2012-10-19 10:31  英语词典\Debug\danciset.obj
     文件       29096  2012-10-19 14:51  英语词典\Debug\denglu.obj
     文件       13848  2012-10-19 10:31  英语词典\Debug\dengluset.obj
     文件       21231  2012-10-17 14:41  英语词典\Debug\duanwenadddlg.obj
     文件       37692  2012-10-17 14:41  英语词典\Debug\duanwendlg.obj
     文件       22420  2012-10-17 14:41  英语词典\Debug\duanweneditdlg.obj
     文件       14032  2013-03-25 16:41  英语词典\Debug\duanwenset.obj
     文件       21362  2012-10-17 14:41  英语词典\Debug\testdlg.obj
     文件      279552  2013-03-26 16:33  英语词典\Debug\vc60.idb
     文件      380928  2013-03-25 16:41  英语词典\Debug\vc60.pdb
     文件        3777  2010-09-06 09:44  英语词典\ReadMe.txt
     文件         219  2010-09-06 09:44  英语词典\StdAfx.cpp
     文件        1074  2010-09-06 10:09  英语词典\StdAfx.h
     文件     4602996  2013-03-25 16:41  英语词典\SuccessDictionary.aps
............此处省略87个文件信息

评论

共有 条评论